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
bdemann authored Jan 28, 2025
2 parents c0089c4 + 4c111e8 commit e4b69be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
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.event.pull_request.labels.*.name }}"
- run: echo "${{ github.actor == 'dependabot[bot]' }}"
- run: echo "${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }}"

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

0 comments on commit e4b69be

Please sign in to comment.