From 77ec527f311091847b800fee01fd050953a65185 Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 6 Nov 2024 19:16:23 +0100 Subject: initial commit --- .github/workflows/flake.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/flake.yml (limited to '.github/workflows/flake.yml') diff --git a/.github/workflows/flake.yml b/.github/workflows/flake.yml new file mode 100644 index 0000000..5aef002 --- /dev/null +++ b/.github/workflows/flake.yml @@ -0,0 +1,32 @@ +name: Flake + +on: + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +jobs: + update: + name: Update + runs-on: ubuntu-latest + permissions: + actions: write + contents: write + pull-requests: write + steps: + - uses: actions/checkout@v4 + + - uses: DeterminateSystems/nix-installer-action@v11 + + - id: update-flake-lock + uses: DeterminateSystems/update-flake-lock@v21 + with: + commit-msg: 'flake: update inputs' + pr-title: 'flake: update inputs' + pr-labels: 'dependencies' + + - uses: benc-uk/workflow-dispatch@v1 + if: ${{ contains(fromJSON('["created", "updated"]'), steps.update-flake-lock.outputs.pull-request-operation) }} + with: + workflow: ci.yml + ref: refs/heads/update_flake_lock_action -- cgit v1.2.3