yosys/.github/workflows/update-flake-lock.yml

21 lines
586 B
YAML
Raw Normal View History

2024-05-13 07:28:32 -05:00
name: update-flake-lock
on:
2025-02-12 07:55:51 -06:00
workflow_dispatch:
2024-05-13 07:28:32 -05:00
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
token: ${{CI_CREATE_PR_TOKEN}}
2024-05-13 07:28:32 -05:00
pr-title: "Update flake.lock" # Title of PR to be created
pr-labels: | # Labels to be set on the PR
dependencies
automated