workflow: 添加自动关闭issue #3
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: Issue Auto Close | |
on: | |
schedule: | |
- cron: "0 */6 * * *" | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
issues: | |
types: [ opened ] | |
permissions: | |
issues: write | |
contents: read | |
jobs: | |
issue-close: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set GH_REPO | |
run: echo "GH_REPO=${{ github.repository }}" >> $GITHUB_ENV | |
- name: Auto Lock Baipiao | |
uses: 14790897/[email protected] | |
with: | |
gh_repo: ${{ github.repository }} | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
issue_labels: "⭐ No Star" |