summaryrefslogtreecommitdiff
path: root/.github/workflows/update-lock.yaml
blob: 9a3628fda27523154b4e66affa27f4c8dd0431d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Update flake.lock

on:
  schedule:
    # run every saturday
    - cron: "0 0 * * 6"
  workflow_dispatch:

jobs:
  update:
    name: Update
    runs-on: ubuntu-latest
    container: nixos/nix:sha256:b8ea88f763f33dfda2317b55eeda3b1a4006692ee29e60ee54ccf6d07348c598 # 2.19.3

    permissions:
      contents: write
      pull-requests: write

    steps:
      - name: Checkout repository
        uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

      - name: Create new branch
        id: branch
        run: |
          branch="update-flake-lock"

          echo "branch=$branch" >> "$GITHUB_OUTPUT"
          git switch -c "$branch"

      - name: Update flake inputs
        run: |
            nix flake update \
              --commit-lock-file \
              --commit-lockfile-summary "chore: update flake inputs"

      - name: Update test flake inputs
        run: |
          pushd ./dev

          nix flake update \
            --commit-lock-file \
            --commit-lockfile-summary "chore: update test flake inputs"

          popd

      - name: Make PR if needed
        env:
          GH_TOKEN: ${{ github.token }}
          BRANCH: ${{ steps.branch.outputs.branch }}
        run: |
          if ! git diff --color=always --exit-code origin/main; then
            git push -u origin "$BRANCH"

            gh pr create \
              --base main \
              --head "$BRANCH" \
              --title "chore: update flake inputs" \
              --fill
          fi