nyxexprs/.github/workflows/update-flake.yml
raf b2fb92bc5c
Some checks failed
build.yml / Merge pull request #16 from NotAShelf/dependabot/github_actions/stefanzweifel/git-auto-commit-action-7 (push) Failing after 0s
Run Checks / check (NIXPKGS_ALLOW_INSECURE=1 NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix flake check --accept-flake-config) (push) Waiting to run
Run Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Waiting to run
Run Checks / build (push) Blocked by required conditions
nix.yml / Merge pull request #16 from NotAShelf/dependabot/github_actions/stefanzweifel/git-auto-commit-action-7 (push) Failing after 0s
Merge pull request #16 from NotAShelf/dependabot/github_actions/stefanzweifel/git-auto-commit-action-7
build(deps): bump stefanzweifel/git-auto-commit-action from 6 to 7
2026-05-24 13:12:06 +00:00

46 lines
953 B
YAML

name: Update flake
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # weekly
permissions:
contents: read
id-token: write
jobs:
update:
if: github.repository == 'notashelf/nyxexprs'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
with:
token: "${{ secrets.GH_TOKEN}}"
- name: "Install Nix"
uses: cachix/install-nix-action@v31.10.6
- uses: cachix/cachix-action@v17
with:
name: nyx
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Update flake
run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "[CI]: update flake inputs"
push_options: "--force"
commit_user_name: GitHub Actions
build:
needs: update
uses: ./.github/workflows/build.yml
secrets: inherit