Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
akihironitta committed Jan 5, 2025
1 parent 884550d commit 2526c8e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Dependabot auto-merge

on: # yamllint disable-line rule:truthy
pull_request:
pull_request_target:
branches:
- master

Expand All @@ -10,7 +10,7 @@ permissions:
pull-requests: write

jobs:
dependabot:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
Expand All @@ -19,3 +19,11 @@ jobs:
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

auto-approve:
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: github.actor == 'dependabot[bot]'
steps:
- uses: hmarr/auto-approve-action@v4

0 comments on commit 2526c8e

Please sign in to comment.