2024-10-29 22:35:22 +05:30
|
|
|
name: Update inputs
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * 5"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-inputs:
|
2024-10-30 22:42:28 +05:30
|
|
|
runs-on: docker
|
2024-10-29 22:46:50 +05:30
|
|
|
container:
|
2024-10-30 14:49:52 +05:30
|
|
|
image: ghcr.io/catthehacker/ubuntu:act-22.04
|
2024-10-29 22:35:22 +05:30
|
|
|
name: Update Inputs
|
|
|
|
steps:
|
|
|
|
- uses: https://github.com/actions/checkout@v3
|
|
|
|
with:
|
|
|
|
token: ${{ github.token }}
|
|
|
|
ref: ${{ github.head_ref }}
|
2024-10-30 14:49:52 +05:30
|
|
|
- uses: https://github.com/cachix/install-nix-action@v27
|
2024-10-29 22:35:22 +05:30
|
|
|
with:
|
2024-10-30 14:49:52 +05:30
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2024-10-29 22:35:22 +05:30
|
|
|
github_access_token: ${{ github.token }}
|
|
|
|
- name: Update inputs
|
|
|
|
run: |
|
|
|
|
nix flake update
|
|
|
|
- name: Commit changes
|
|
|
|
uses: https://github.com/EndBug/add-and-commit@v9
|
|
|
|
with:
|
|
|
|
message: 'Actions: Update Inputs'
|
|
|
|
default_author: github_actions
|
|
|
|
add: 'flake.lock'
|