Automated #35
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: Automated | |
| on: | |
| schedule: | |
| - cron: "0 8 * * 0" | |
| workflow_dispatch: | |
| concurrency: | |
| group: automation-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| actions: write # Allow canceling in-progress runs | |
| contents: write # Read/write access to the repository | |
| pull-requests: write # Allow creating pull requests | |
| jobs: | |
| flake-inputs: | |
| name: flake-inputs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| with: | |
| determinate: true | |
| - uses: DeterminateSystems/update-flake-lock@main | |
| with: | |
| pr-title: "chore: update flake.lock" | |
| pr-labels: | | |
| automated |