github action to update inputs

This commit is contained in:
Adithya 2023-11-06 01:28:02 +05:30
parent 5d9be275d2
commit b1ba02dacc
Signed by: adtya
GPG key ID: 48FC9915FFD326D0

28
.github/workflows/update-inputs.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: Update inputs
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
update-inputs:
runs-on: ubuntu-latest
name: Update Inputs
steps:
- uses: actions/checkout@v3
with:
token: ${{ github.token }}
ref: ${{ github.head_ref }}
- uses: cachix/install-nix-action@v20
with:
github_access_token: ${{ github.token }}
- name: Update inputs
run: |
nix flake update
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
message: 'Actions: Update Inputs'
default_author: github_actions
add: 'flake.lock'