diff options
author | seth <getchoo@tuta.io> | 2023-07-05 23:25:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 23:25:12 +0000 |
commit | 2cb22ad280ec0b540ec6e96759d478c60562bc9a (patch) | |
tree | 0b15c548e8ef1014843f7085439efc7e079934fd | |
parent | 5ba13297c6295acf76e69fe1b3cf7723b9d2ad05 (diff) | |
parent | 24b9ed106f3c217271468de565ff6706fd832ea5 (diff) | |
download | PrismLauncher-2cb22ad280ec0b540ec6e96759d478c60562bc9a.tar.gz PrismLauncher-2cb22ad280ec0b540ec6e96759d478c60562bc9a.tar.bz2 PrismLauncher-2cb22ad280ec0b540ec6e96759d478c60562bc9a.zip |
Merge pull request #1310 from getchoo/autoupdate-flake
feat(actions): add update-flake-lock
-rw-r--r-- | .github/workflows/update-flake.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/update-flake.yml b/.github/workflows/update-flake.yml new file mode 100644 index 00000000..c790c9c6 --- /dev/null +++ b/.github/workflows/update-flake.yml @@ -0,0 +1,26 @@ +name: Update Flake Lockfile + +on: + schedule: + # run weekly on sunday + - cron: "0 0 * * 0" + workflow_dispatch: + +permissions: + pull-requests: write + +jobs: + update-flake: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v22 + + - uses: DeterminateSystems/update-flake-lock@v19 + with: + commit-msg: "chore(nix): update lockfile" + pr-title: "chore(nix): update lockfile" + pr-labels: | + Linux + simple change |