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/deps.yml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/deps.yml (limited to '.github/workflows/deps.yml') diff --git a/.github/workflows/deps.yml b/.github/workflows/deps.yml new file mode 100644 index 0000000..b1ba83b --- /dev/null +++ b/.github/workflows/deps.yml @@ -0,0 +1,44 @@ +name: Dependencies + +on: + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +permissions: + pull-requests: write + contents: write + +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@v12 + + - run: nix -vL run --show-trace .#update + + - id: create-pr + uses: peter-evans/create-pull-request@v6 + with: + branch: update_zmk_config_deps + delete-branch: true + committer: 'github-actions[bot] ' + author: 'github-actions[bot] ' + commit-message: 'config,nix: update deps' + title: 'config,nix: update deps' + labels: 'dependencies' + body: | + Automated bump of ZMK dependencies + + - uses: benc-uk/workflow-dispatch@v1 + if: ${{ contains(fromJSON('["created", "updated"]'), steps.create-pr.outputs.pull-request-operation) }} + with: + workflow: ci.yml + ref: refs/heads/update_zmk_config_deps -- cgit v1.2.3