Skip to content

Commit

Permalink
[BUGFIX] Replace Dependabot auto-merge action
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler committed Nov 24, 2022
1 parent 69bff04 commit e22b919
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ jobs:
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ahmadnassri/action-dependabot-auto-merge@v2
- name: Fetch metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1
with:
target: minor
github-token: ${{ secrets.MERGE_TOKEN }}
- name: Comment with merge instructions
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
uses: mshick/add-pr-comment@v2
with:
repo-token: ${{ secrets.MERGE_TOKEN }}
message: '@dependabot merge'

0 comments on commit e22b919

Please sign in to comment.