Update lockfiles #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update lockfiles | |
on: | |
schedule: | |
# run every friday | |
- cron: "0 0 * * 5" | |
workflow_dispatch: | |
jobs: | |
update: | |
name: Run update | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v24 | |
- name: Set Git user info | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
- name: Create new branch | |
id: branch | |
run: | | |
# try not to conflict with other branches | |
branch="update-lock/${{ github.run_id }}" | |
echo "branch=$branch" >> "$GITHUB_OUTPUT" | |
git switch -c "$branch" | |
- name: Update flake inputs | |
run: | | |
pushd dev | |
nix flake update \ | |
--commit-lock-file \ | |
--commit-lockfile-summary "chore: update dev flake inputs" | |
popd | |
- name: Update upstream sources | |
run: | | |
nix run --inputs-from . nixpkgs#nvfetcher | |
if ! git diff --color=always --exit-code; then | |
git commit -am "chore: update nvfetch sources" | |
fi | |
- name: Create PR | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
gh pr create \ | |
--base main \ | |
--head ${{ steps.branch.outputs.branch }} \ | |
--title "chore: update lockfiles" \ | |
--fill |