Skip to content

Commit

Permalink
Merge branch 'main' into pr_template_update
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs authored Jan 28, 2025
2 parents 21c42ab + aeede74 commit c0089c4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ on:
- reopened

jobs:
check-conditions:
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.actor }}"
- run: echo "${{ github.event.pull_request.title }}"
- run: echo "${{ contains(github.event.pull_request.title, 'deps') }}"
- run: echo "${{ github.actor == 'dependabot[bot]' }}"

auto-merge:
if: ${{ github.actor == 'dependabot[bot]' && contains(github.event.pull_request.title, 'deps') }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit c0089c4

Please sign in to comment.