Commit | Line | Data |
---|---|---|
5467ff83 | 1 | name: Combine PRs |
905ed4ad | 2 | |
905ed4ad | 3 | on: |
2fe46fd0 | 4 | workflow_dispatch: |
5467ff83 | 5 | schedule: |
27c3ac59 | 6 | - cron: '0 2 * * *' |
905ed4ad | 7 | |
5467ff83 JB |
8 | permissions: |
9 | contents: write | |
10 | pull-requests: write | |
11 | checks: read | |
12 | ||
905ed4ad | 13 | jobs: |
905ed4ad | 14 | combine-prs: |
1fdc02e1 | 15 | if: github.repository == 'poolifier/poolifier' |
905ed4ad JB |
16 | runs-on: ubuntu-latest |
17 | ||
905ed4ad | 18 | steps: |
5467ff83 JB |
19 | - name: combine-prs |
20 | id: combine-prs | |
05eddc4e | 21 | uses: github/combine-prs@v5.0.0 |
02fd4f2c | 22 | with: |
1fdc02e1 | 23 | github_token: ${{ secrets.GH_TOKEN_PROTECTED }} |