3cf3ffebfbd3c3e04d0d7df29cca0404b685b8e7
[poolifier.git] / .github / workflows / combine-prs.yml
1 name: Combine PRs
2
3 on:
4 workflow_dispatch:
5 schedule:
6 - cron: '0 0 * * *'
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@v4.0.0
22 with:
23 github_token: ${{ secrets.GH_TOKEN_PROTECTED }}