my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: update does not need to manually trigger

these events no longer need to be manually triggered beacuse we are
using github pat token

isabel ce0520b0 0ffaf05e

+1 -29
-6
.github/workflows/check-lock.yml
··· 2 2 3 3 on: 4 4 workflow_dispatch: 5 - workflow_call: 6 - inputs: 7 - ref: 8 - required: false 9 - type: string 10 5 push: 11 6 paths: 12 7 - "**.lock" ··· 22 17 - name: Checkout 23 18 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 24 19 with: 25 - ref: ${{ inputs.ref || github.sha }} 26 20 persist-credentials: false 27 21 28 22 - name: Install Lix
-6
.github/workflows/check.yml
··· 2 2 3 3 on: 4 4 workflow_dispatch: 5 - workflow_call: 6 - inputs: 7 - ref: 8 - required: false 9 - type: string 10 5 push: 11 6 paths: 12 7 - "**.nix" ··· 33 28 - name: Checkout 34 29 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 35 30 with: 36 - ref: ${{ inputs.ref || github.sha }} 37 31 persist-credentials: false 38 32 39 33 - name: Install Lix
+1 -17
.github/workflows/update.yml
··· 45 45 {{ env.GIT_COMMIT_MESSAGE }} 46 46 ``` 47 47 48 - check: 49 - name: Check Flake 50 - needs: update-lockfile 51 - 52 - uses: ./.github/workflows/check.yml 53 - with: 54 - ref: ${{ needs.update-lockfile.outputs.branch }} 55 - 56 - check-lock: 57 - name: Check Lock 58 - needs: update-lockfile 59 - 60 - uses: ./.github/workflows/check-lock.yml 61 - with: 62 - ref: ${{ needs.update-lockfile.outputs.branch }} 63 - 64 48 merge: 65 49 name: Merge Pull Request 66 - needs: [update-lockfile, check, check-lock] 50 + needs: update-lockfile 67 51 runs-on: ubuntu-latest 68 52 69 53 permissions: