Bump org.apache.maven.plugins:maven-release-plugin from 3.1.1 to 3.2.0 #11
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Handle Dependabot PRs | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| ApproveAndMerge: | |
| name: Auto approve Dependabot PRs | |
| runs-on: ubuntu-latest | |
| # Only run for PRs created by Dependabot - extended verification is done in the reusable workflow | |
| if: github.actor == 'dependabot[bot]' | |
| # These permissions are needed to approve pull requests | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Auto approve Dependabot PR | |
| uses: secure-software-engineering/actions/dependabot@develop | |
| with: | |
| token: ${{ secrets.AUTO_MERGE_PAT }} |