aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dependabot.yml
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2024-01-09 19:56:47 -0500
committerXe Iaso <me@xeiaso.net>2024-01-09 19:56:56 -0500
commitfadf1ef93c470cf67a8e21506cd90403ad88f47e (patch)
treed02d7d9d9921b6e4801ddb3816d2b0ae2555c41d /.github/workflows/dependabot.yml
parent17786ec8a51c64f95b348fcabc8ece3248b523b2 (diff)
downloadx-fadf1ef93c470cf67a8e21506cd90403ad88f47e.tar.xz
x-fadf1ef93c470cf67a8e21506cd90403ad88f47e.zip
.github/workflows: enable automerge for dependabot PRs
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to '.github/workflows/dependabot.yml')
-rw-r--r--.github/workflows/dependabot.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
index 3bd4922..d1276d4 100644
--- a/.github/workflows/dependabot.yml
+++ b/.github/workflows/dependabot.yml
@@ -15,8 +15,8 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
- ref: ${{github.event.pull_request.head.ref}}
- repository: ${{github.event.pull_request.head.repo.full_name}}
+ ref: ${{ github.event.pull_request.head.ref }}
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
submodules: true
# TODO: Add any needed steps to be able to run your command
# (e.g. actions/setup-node@2)
@@ -29,3 +29,8 @@ jobs:
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Bump Go mod SRI
+ commit_user_name: Mimi
+ commit_user_email: mimi@xeserv.us
+ commit_author: Mimi <mimi@xeserv.us>
+ - name: Enable Pull Request Automerge
+ run: gh pr merge --merge --auto ${{ github.event.number }}