Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bring in dependabot and its automerge action #11

Merged
merged 1 commit into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,17 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "00:00"
timezone: "Etc/UTC"
rebase-strategy: 'auto'

- package-ecosystem: "gomod"
directory: /
schedule:
interval: "daily"
time: "00:00"
timezone: "Etc/UTC"
rebase-strategy: 'auto'
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -29,4 +29,16 @@ jobs:
- name: "Annotate tests"
uses: guyarb/golang-test-annotations@v0.5.0
with:
test-results: test.json
test-results: test.json

dependabot-merge:
name: "Dependabot auto-merge"
runs-on: ubuntu-latest
needs: [ "lint", "test" ]
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3.2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}