Mark/Close Stale Issues/PRs #107
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: "Mark/Close Stale Issues/PRs" | |
on: | |
schedule: | |
- cron: "0 13 * * *" | |
jobs: | |
stale: | |
if: github.repository == 'eclipse/omr' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: |- | |
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment on the issue or it will be closed in 60 days. | |
stale-pr-message: |- | |
This pull request is stale because it has been open 180 days with no activity. Remove stale label or comment on the pull request or it will be closed in 60 days. | |
days-before-stale: 180 | |
days-before-close: 60 | |
exempt-issue-labels: 'backlog' | |
stale-issue-label: 'stale' | |
stale-pr-label: 'stale' | |
debug-only: true |