Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Jan 27, 2025
1 parent fdb7eac commit 64d9f20
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,22 @@ on:
- opened
- synchronize
- reopened

- ready_for_review
jobs:
check-if-dependabot:
runs-on: ubuntu-latest
steps:
- run: 'echo ${{ github.actor }}'
- run: 'echo ${{ github.event.pull_request.title }}'
- if: ${{ github.actor == 'dependabot[bot]' }}
run: |
echo "This is a Dependabot PR"
exit 0
- if: ${{contains(github.event.pull_request.title, 'deps')}}
run: |
echo "This is a Dependabot Deps PR"
exit 0
auto-merge:
if: ${{ github.actor == 'dependabot[bot]' && contains(github.event.pull_request.title, 'deps') }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 64d9f20

Please sign in to comment.