mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-26 20:50:30 +08:00
23 lines
444 B
YAML
23 lines
444 B
YAML
name: Close Issues
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
close:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: mihomo-party-org/auto-close-isssues
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.23'
|
|
|
|
- env:
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
API_URL: ${{ secrets.API_URL }}
|
|
API_KEY: ${{ secrets.API_KEY }}
|
|
run: go run main.go |