Skip to content

Commit

Permalink
Add workflow to auto-merge dependency prs (#741)
Browse files Browse the repository at this point in the history
* Add workflow to auto-merge dependency prs

* Update workflow name

* Update job name
  • Loading branch information
andrcuns authored Jun 8, 2024
1 parent 3c3b0f8 commit d3cacc3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto Merge

on:
pull_request:

jobs:
dependabot:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Auto Merge
uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: major
github-token: ${{ secrets.PUSH_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
needs: rspec
if: always()
name: Publish report as ${{ matrix.results }}
name: publish report as ${{ matrix.results }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit d3cacc3

Please sign in to comment.