Bump codacy/codacy-analysis-cli-action from 30783d03e758713bb5ed7b79292cfb14b9dd9a4a to d43360362776a6789b47b99ae8973510854e2d3d #5514
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: Close Stale PRs | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Runs daily at midnight | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| close_stale_prs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-pr-message: 'This PR has been automatically closed due to inactivity from the owner for 15 days.' | |
| days-before-pr-stale: 15 | |
| days-before-pr-close: 0 | |
| exempt-pr-author: false | |
| exempt-pr-labels: '' | |
| only-labels: '' | |
| operations-per-run: 30 | |
| remove-stale-when-updated: true | |
| debug-only: false |