Brendan Golden
529b0e13ec
Some checks failed
Build_Deploy / linter (push) Successful in 6s
Build_Deploy / deploy_dns (push) Has been cancelled
Build_Deploy / deploy_active (active) (push) Has been cancelled
Build_Deploy / deploy_active (active-core) (push) Has been cancelled
Build_Deploy / deploy_active (active-ext) (push) Has been cancelled
Build_Deploy / build (push) Has been cancelled
31 lines
No EOL
831 B
YAML
31 lines
No EOL
831 B
YAML
name: Update_Flake
|
|
|
|
run-name: "[Update Flake] ${{ inputs.input_to_update }}"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
input_to_update:
|
|
description: 'Flake input to update'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: nix
|
|
|
|
permissions:
|
|
# Give the default GITHUB_TOKEN write permission to commit and push the
|
|
# added or changed files to the repository.
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
token: ${{ secrets.PIPELINE_TOKEN }}
|
|
- run: nix flake lock --update-input "${{ inputs.input_to_update }}"
|
|
shell: bash
|
|
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "Updated flake for ${{ inputs.input_to_update }}" |