-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add flake update job * Update .github/workflows/flake_update.yaml Co-authored-by: Jost Schulte <[email protected]> * Remove experimental commands * Pin Nix in the test workflow --------- Co-authored-by: Jost Schulte <[email protected]>
- Loading branch information
1 parent
a2a60d8
commit 835548a
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "flake_update" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# At 7:00am on Monday | ||
- cron: "0 7 * * 1" | ||
|
||
jobs: | ||
flake_update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.20.4/install | ||
|
||
- name: Flake update | ||
run: | | ||
nix flake update | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
commit-message: "chore(nix): update flake.lock" | ||
title: "Update flake.lock" | ||
body: "This PR updates the flake.lock file." | ||
branch: "update-flake-lock" | ||
branch-suffix: "short-commit-hash" | ||
base: "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters