forked from aylac.top/nixcfg
this repo has no description
at main 740 B view raw
1jobs: 2 update-flake-lock: 3 runs-on: ubuntu-latest 4 steps: 5 - uses: actions/checkout@main 6 with: 7 fetch-depth: 1 8 ref: ${{ github.head_ref }} 9 - name: Setup Git 10 run: |- 11 git config --local user.name "github-actions[bot]" 12 git config --local user.email "github-actions[bot]@users.noreply.github.com" 13 - uses: DeterminateSystems/nix-installer-action@main 14 - uses: DeterminateSystems/update-flake-lock@main 15 with: 16 pr-assignees: ayla6 17 pr-labels: |- 18 dependencies 19 automated 20 pr-title: 'flake: update inputs' 21 token: ${{ secrets.FLAKE_UPDATE_PAT }} 22name: update-inputs 23'on': 24 schedule: 25 - cron: 0 6 * * 2,5 26 workflow_dispatch: {}