swapspace: 1.18 -> 1.18.1
[NixPkgs.git] / .github / workflows / periodic-merge-6h.yml
blob1f7cfce34a2e894b53420cd2ea44299879119882
1 # This action periodically merges base branches into staging branches.
2 # This is done to
3 #  * prevent conflicts or rather resolve them early
4 #  * make all potential breakage happen on the staging branch
5 #  * and make sure that all major rebuilds happen before the staging
6 #    branch get’s merged back into its base branch.
8 name: "Periodic Merges (6h)"
11 on:
12   schedule:
13     # * is a special character in YAML so you have to quote this string
14     # Merge every 6 hours
15     - cron:  '0 */6 * * *'
16   workflow_dispatch:
18 permissions:
19   contents: read
21 jobs:
22   periodic-merge:
23     permissions:
24       contents: write  # for devmasx/merge-branch to merge branches
25       pull-requests: write  # for peter-evans/create-or-update-comment to create or update comment
26     if: github.repository_owner == 'NixOS'
27     runs-on: ubuntu-latest
28     strategy:
29       # don't fail fast, so that all pairs are tried
30       fail-fast: false
31       # certain branches need to be merged in order, like master->staging-next->staging
32       # and disabling parallelism ensures the order of the pairs below.
33       max-parallel: 1
34       matrix:
35         pairs:
36           - from: master
37             into: staging-next
38           - from: staging-next
39             into: staging
40     name: ${{ matrix.pairs.from }} → ${{ matrix.pairs.into }}
41     steps:
42       - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44       - name: ${{ matrix.pairs.from }} → ${{ matrix.pairs.into }}
45         uses: devmasx/merge-branch@854d3ac71ed1e9deb668e0074781b81fdd6e771f # 1.4.0
46         with:
47           type: now
48           from_branch: ${{ matrix.pairs.from }}
49           target_branch: ${{ matrix.pairs.into }}
50           github_token: ${{ secrets.GITHUB_TOKEN }}
52       - name: Comment on failure
53         uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
54         if: ${{ failure() }}
55         with:
56           issue-number: 105153
57           body: |
58             Periodic merge from `${{ matrix.pairs.from }}` into `${{ matrix.pairs.into }}` has [failed](https://github.com/NixOS/nixpkgs/actions/runs/${{ github.run_id }}).