mihomo-party/.github/workflows/issues.yml

26 lines
654 B
YAML
Raw Normal View History

2024-10-23 12:20:33 +08:00
name: Close Issues
on:
issues:
types: [opened]
jobs:
close:
runs-on: ubuntu-latest
steps:
2024-10-23 19:27:38 +08:00
- uses: actions/checkout@v4
with:
repository: mihomo-party-org/auto-close-isssues
2024-10-23 12:20:33 +08:00
2024-10-23 19:27:38 +08:00
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- env:
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
GITHUB_TOKEN: ${{ secrets.POMPURIN404_TOKEN }}
API_URL: ${{ secrets.OPENAI_BASE_URL }}
API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: go run main.go