summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2021-05-03 09:17:01 -0400
committerGitHub <noreply@github.com>2021-05-03 09:17:01 -0400
commitbd490bfbfd5ceea07dca4a61d3c6d73a4e69e669 (patch)
tree47cac1bc06a064edd9ebada5ac25924e669da2a7
parentee65297183d5d74a7883f44eb8fbeda63bb30404 (diff)
ci: use Action for auto-merging Dependabot PRs
Switch to one that supports squash-merging.
-rw-r--r--.github/workflows/merge-dependabot.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/merge-dependabot.yml b/.github/workflows/merge-dependabot.yml
index c73be6a76..e70b29d45 100644
--- a/.github/workflows/merge-dependabot.yml
+++ b/.github/workflows/merge-dependabot.yml
@@ -7,8 +7,8 @@ jobs:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- - uses: koj-co/dependabot-pr-action@master
+ - uses: akheron/dependabot-cron-action@0.1
with:
- token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}
- merge-minor: true
- merge-patch: true
+ token: ${{ secrets.GITHUB_TOKEN }}
+ auto-merge: "minor"
+ merge-method: "squash"