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