Update Flake Inputs #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Flake Inputs | |
| on: | |
| schedule: | |
| - cron: "0 2 * * 1" # Every Monday at 02:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| update-flake-inputs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Nix | |
| uses: NixOS/nix-installer-action@main | |
| - name: Update flake inputs | |
| uses: mic92/update-flake-inputs@main | |
| with: | |
| auto-merge: true |