From bac3b7fa099fc22ce040edfdc1e830574fa917b7 Mon Sep 17 00:00:00 2001 From: zeme Date: Mon, 20 May 2024 11:15:01 +0200 Subject: [PATCH] delete update-flake-lock.yaml --- .github/workflows/update-flake-lock.yml | 35 ------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/update-flake-lock.yml diff --git a/.github/workflows/update-flake-lock.yml b/.github/workflows/update-flake-lock.yml deleted file mode 100644 index 28007fb..0000000 --- a/.github/workflows/update-flake-lock.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Update Flake Lock - -on: - workflow_dispatch: - schedule: - - cron: '0 0 * * 0' # Runs weekly on Sunday at 00:00 - -jobs: - update-flake-lock: - name: Update Flake Lock - runs-on: ubuntu-latest - - permissions: - actions: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install Nix - uses: DeterminateSystems/nix-installer-action@main - - - name: Update flake.lock - id: update - uses: DeterminateSystems/update-flake-lock@v21 - with: - nix-options: --accept-flake-config - - - name: Enable Pull Request Auto-Merge - uses: peter-evans/enable-pull-request-automerge@v3 - if: steps.update.outputs.pull-request-operation == 'created' - with: - pull-request-number: ${{ steps.update.outputs.pull-request-number }} - merge-method: squash - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file