diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dependabotmerge.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/dependabotmerge.yml b/.github/workflows/dependabotmerge.yml new file mode 100644 index 0000000..aa82322 --- /dev/null +++ b/.github/workflows/dependabotmerge.yml @@ -0,0 +1,11 @@ +name: CI +on: [push, pull_request] + +jobs: + automerge: + needs: build + runs-on: ubuntu-latest + steps: + - uses: fastify/github-action-merge-dependabot@v2.1.1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} |