nur-packages/.github/workflows/update.yml

25 lines
665 B
YAML
Raw Normal View History

2023-02-23 10:59:24 +11:00
name: "Update flake inputs"
on:
workflow_dispatch:
schedule:
# bump weekly at 6:50
- cron: '50 6 * * 1'
jobs:
update-flake:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
2023-02-23 10:59:24 +11:00
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
2023-02-23 13:21:44 +11:00
- name: "flake: update inputs"
uses: DeterminateSystems/update-flake-lock@v20
2023-02-23 10:59:24 +11:00
with:
2023-02-23 13:21:44 +11:00
pr-title: "flake: update inputs"
2023-02-23 10:59:24 +11:00
pr-labels: dependencies
2023-02-23 13:21:44 +11:00
commit-msg: "flake: update inputs"