Close stalled issues and PRs #76
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: Close stalled issues and PRs | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
env: | |
STALE_LABEL: stale | |
EXEMPT_LABELS: keep | |
STALE_PR_MESSAGE: | | |
This PR has been automatically marked as stale because it hasn't had any recent activity. | |
It will be closed in 5 days if no further activity occurs. | |
CLOSE_PR_MESSAGE: | | |
This PR was closed because it has been inactive for 5 days since being marked as stale. | |
CLOSE_ISSUE_MESSAGE: | | |
This issue was closed because it has been inactive for 5 days since being marked as stale. | |
jobs: | |
stale: | |
permissions: | |
issues: write | |
pull-requests: write | |
if: ${{ github.repository == 'fosslight/fosslight' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 30 | |
days-before-close: 5 | |
days-before-issue-stale: -1 | |
operations-per-run: 300 | |
remove-stale-when-updated: true | |
stale-pr-label: ${{ env.STALE_LABEL }} | |
exempt-pr-labels: ${{ env.EXEMPT_LABELS }} | |
stale-pr-message: ${{ env.STALE_PR_MESSAGE }} | |
close-pr-message: ${{ env.CLOSE_PR_MESSAGE }} | |
stale-issue-label: ${{ env.STALE_LABEL }} | |
close-issue-message: ${{ env.CLOSE_ISSUE_MESSAGE }} |