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

Configure Feed

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

ci: use token

so we can diffff

isabel f66eb9bc 742a3510

+1 -18
-6
.github/workflows/diff.yml
··· 2 2 3 3 on: 4 4 pull_request: 5 - workflow_call: 6 - inputs: 7 - ref: 8 - required: false 9 - type: string 10 5 11 6 permissions: 12 7 contents: read ··· 19 14 - name: Checkout code 20 15 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 21 16 with: 22 - ref: ${{ inputs.ref || github.sha }} 23 17 persist-credentials: false 24 18 25 19 - name: Install Lix
+1 -12
.github/workflows/update.yml
··· 36 36 id: pr 37 37 uses: DeterminateSystems/update-flake-lock@c5930b397a673a70ca70be06020e943aeac310a1 # v27 38 38 with: 39 + token: ${{ secrets.GH_TOKEN_UPDATES }} 39 40 commit-msg: "flake.lock: update all inputs" 40 41 pr-title: "flake.lock: update all inputs" 41 42 branch: update-flake-inputs ··· 57 58 needs: update-lockfile 58 59 59 60 uses: ./.github/workflows/check-lock.yml 60 - with: 61 - ref: ${{ needs.update-lockfile.outputs.branch }} 62 - 63 - diff: 64 - name: Lix Diff 65 - needs: update-lockfile 66 - 67 - permissions: 68 - contents: read 69 - pull-requests: write 70 - 71 - uses: ./.github/workflows/diff.yml 72 61 with: 73 62 ref: ${{ needs.update-lockfile.outputs.branch }} 74 63