add automatic updates via niv

This commit is contained in:
Jörg Thalheim
2020-07-17 05:54:50 +01:00
parent a4d5042100
commit 90033a1da0

17
.github/niv-updates.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Automated niv-managed dependency updates
on:
schedule:
# Every friday
- cron: '0 0 * * FRI'
jobs:
niv-updater:
name: 'Create PRs for niv-managed dependencies'
runs-on: ubuntu-latest
steps:
# notice there is no checkout step
- name: niv-updater-action
uses: knl/niv-updater-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
pull_request_base: 'develop'