magicard-cups-driver: init at 1.4.0 (#338852)
[NixPkgs.git] / .github / workflows / periodic-merge-24h.yml
blob519d90c442d96ecfe557c46af8ff2641f4a7d997
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 (24h)"
11 on:
12   schedule:
13     # * is a special character in YAML so you have to quote this string
14     # Merge every 24 hours
15     - cron:  '0 0 * * *'
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: haskell-updates
38           - from: release-24.05
39             into: staging-next-24.05
40           - from: staging-next-24.05
41             into: staging-24.05
42     name: ${{ matrix.pairs.from }} → ${{ matrix.pairs.into }}
43     steps:
44       - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
46       - name: ${{ matrix.pairs.from }} → ${{ matrix.pairs.into }}
47         uses: devmasx/merge-branch@854d3ac71ed1e9deb668e0074781b81fdd6e771f # 1.4.0
48         with:
49           type: now
50           from_branch: ${{ matrix.pairs.from }}
51           target_branch: ${{ matrix.pairs.into }}
52           github_token: ${{ secrets.GITHUB_TOKEN }}
54       - name: Comment on failure
55         uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
56         if: ${{ failure() }}
57         with:
58           issue-number: 105153
59           body: |
60             Periodic merge from `${{ matrix.pairs.from }}` into `${{ matrix.pairs.into }}` has [failed](https://github.com/NixOS/nixpkgs/actions/runs/${{ github.run_id }}).