[Bug] user前段缺少affiliate.json,访问时一直重试,大幅度拖慢响应时间 #98
This file contains hidden or 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 Remove Inactive | |
| on: | |
| issues: | |
| types: [edited] | |
| issue_comment: | |
| types: [created, edited] | |
| permissions: | |
| contents: read | |
| jobs: | |
| issue-remove-inactive: | |
| permissions: | |
| issues: write # for actions-cool/issues-helper to update issues | |
| pull-requests: write # for actions-cool/issues-helper to update PRs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: remove inactive | |
| if: github.event.issue.state == 'open' && github.actor == github.event.issue.user.login | |
| uses: actions-cool/issues-helper@v3 | |
| with: | |
| actions: 'remove-labels' | |
| issue-number: ${{ github.event.issue.number }} | |
| labels: 'Inactive' |