Comment on Stale Issues #12
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: Comment on Stale Issues | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
# don't run cron from forks of the main repository or from other branches | |
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
days-before-close: -1 | |
days-before-issue-stale: 30 | |
days-before-pr-stale: 30 | |
stale-pr-message: "This PR is stale. Add a nice message, can mention maintainers or maintainer team to draw attention" | |
stale-issue-message: "This issue is stale. Add a nice message, can mention maintainers or maintainer team to draw attention" | |