Apparently Dependabot can upgrade reusable GHA workflows as well. So less burden on support and less stress from changes in those reusable workflows in `main` **Auto-cherry-pick to `6.3.x` & `6.2.x`**
17 lines
343 B
YAML
17 lines
343 B
YAML
name: Merge Dependabot PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- '*.x'
|
|
|
|
run-name: Merge Dependabot PR ${{ github.ref_name }}
|
|
|
|
jobs:
|
|
merge-dependabot-pr:
|
|
permissions: write-all
|
|
|
|
uses: spring-io/spring-github-workflows/.github/workflows/spring-merge-dependabot-pr.yml@v3
|
|
with:
|
|
mergeArguments: --auto --squash |