api调用传入discord服务器整个 [ ] api参数,gpt-4o无法图片使用 #129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CloseIssue | |
on: | |
workflow_dispatch: | |
issues: | |
types: [ opened ] | |
jobs: | |
run-python-script: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: pip install requests | |
- name: Run close_issue.py Script | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: python .github/close_issue.py |