From 90033a1da05016de5a5d6260a593a960a134fcc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 17 Jul 2020 05:54:50 +0100 Subject: [PATCH] add automatic updates via niv --- .github/niv-updates.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/niv-updates.yml 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'