github workflows should be placed under .github/workflows

This commit is contained in:
László Vaskó
2020-07-25 22:30:59 +02:00
parent e9e3c49f5e
commit c440f4afe4

17
.github/workflows/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'