diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..61c651e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9144abd..92dd0d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,3 +25,12 @@ jobs: run: yarn --frozen-lockfile - name: Test run: yarn test + + automerge: + needs: build + runs-on: ubuntu-latest + + steps: + - uses: fastify/github-action-merge-dependabot@v2.2.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}