diff --git a/.github/niv-updates.yml b/.github/niv-updates.yml new file mode 100644 index 0000000..a1dc0ce --- /dev/null +++ b/.github/niv-updates.yml @@ -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'