update #110
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 | |
on: | |
workflow_dispatch: # allows manual triggering | |
schedule: | |
- cron: '0 3 * * 0' # runs weekly on Sunday at 03:00 | |
jobs: | |
out-of-tree-packages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Update out of tree packages | |
run: nix run .\#updateRepoDependencies | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: update-dependencies | |
delete-branch: true | |
commit-message: Update dependencies | |
title: Update Dependencies |