2022-05-13 23:44:49 +02:00
|
|
|
name: "Update flakes"
|
|
|
|
on:
|
|
|
|
repository_dispatch:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: '51 2 * * 0'
|
|
|
|
jobs:
|
|
|
|
createPullRequest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 05:27:10 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-05-13 23:44:49 +02:00
|
|
|
- name: Install Nix
|
2024-01-15 22:10:59 +00:00
|
|
|
uses: cachix/install-nix-action@v25
|
2022-05-13 23:44:49 +02:00
|
|
|
with:
|
|
|
|
extra_nix_config: |
|
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Update flake.lock
|
2024-03-04 22:35:44 +00:00
|
|
|
uses: DeterminateSystems/update-flake-lock@v21
|
2022-05-29 11:09:30 +02:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
2023-06-16 09:27:40 +02:00
|
|
|
pr-labels: |
|
|
|
|
merge-queue
|