configuration.nix/.github/workflows/update-inputs.yml

29 lines
665 B
YAML
Raw Normal View History

2023-06-04 10:30:33 +05:30
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
2023-06-05 09:40:52 +05:30
uses: EndBug/add-and-commit@v9
2023-06-04 10:30:33 +05:30
with:
2023-06-05 09:40:52 +05:30
message: 'Actions: Update Inputs'
default_author: github_actions
add: 'flake.lock'