diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-10 16:25:15 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-10 16:25:15 +0300 |
commit | 35ccfdb7996ba727039ad2c0ab2974a49eecb6cc (patch) | |
tree | 2ef737788a9a0d5c6e810373371c2497f6e1c59c /.github/workflows/update-flake.yml | |
parent | 6d758795af8a414d13db4951e3e9ed60af7091fd (diff) | |
parent | 91c9082d19b957c3295e7a0b5bc6add71e6459b8 (diff) | |
download | PrismLauncher-35ccfdb7996ba727039ad2c0ab2974a49eecb6cc.tar.gz PrismLauncher-35ccfdb7996ba727039ad2c0ab2974a49eecb6cc.tar.bz2 PrismLauncher-35ccfdb7996ba727039ad2c0ab2974a49eecb6cc.zip |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into catpacks
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to '.github/workflows/update-flake.yml')
-rw-r--r-- | .github/workflows/update-flake.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/update-flake.yml b/.github/workflows/update-flake.yml new file mode 100644 index 00000000..ad22120e --- /dev/null +++ b/.github/workflows/update-flake.yml @@ -0,0 +1,28 @@ +name: Update Flake Lockfile + +on: + schedule: + # run weekly on sunday + - cron: "0 0 * * 0" + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +jobs: + update-flake: + if: github.repository == 'PrismLauncher/PrismLauncher' + 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 |