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