19 lines
No EOL
560 B
YAML
19 lines
No EOL
560 B
YAML
|
|
name: update-dependencies
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: '0 6 * * *'
|
|
jobs:
|
|
update-dependencies:
|
|
runs-on: nixos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- id: update
|
|
uses: https://github.com/DeterminateSystems/update-flake-lock@main
|
|
|
|
# - name: Merge
|
|
# run: gh pr merge --auto "${{ steps.update.outputs.pull-request-number }}" --rebase
|
|
# env:
|
|
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
# if: ${{ steps.update.outputs.pull-request-number != '' }}s |