Merge pull request #8516 from DIRACGrid/atsareg-patch-2 #2689
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: PR sweep | |
| on: | |
| push: | |
| workflow_dispatch: | |
| inputs: | |
| since: | |
| description: 'Override the "since" parameter (e.g. "30 days ago")' | |
| required: false | |
| default: '10 days ago' | |
| jobs: | |
| pr-sweep: | |
| runs-on: ubuntu-latest | |
| concurrency: pr-sweep | |
| timeout-minutes: 30 | |
| if: github.repository == 'DIRACGrid/DIRAC' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.PAT }} | |
| - uses: DIRACGrid/pr-sweeper@main | |
| with: | |
| github-pat: ${{ secrets.PAT }} | |
| pr-project-name: DiracGridBot/DIRAC | |
| since: ${{ inputs.since || '10 days ago' }} |