Bump org.apache.maven.plugins:maven-compiler-plugin from 3.13.0 to 3.14.0 in the updates group #29
Workflow file for this run
This file contains 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: "Auto Merge Dependabot PRs" | |
"on": | |
pull_request: | |
types: | |
- "labeled" | |
- "opened" | |
- "synchronize" | |
jobs: | |
auto-merge: | |
if: "${{ github.actor == 'dependabot[bot]' }} || ${{ github.actor == 'BenSlabbert'\ | |
\ }}" | |
runs-on: "ubuntu-latest" | |
env: | |
GH_TOKEN: "${{ secrets.GH_TOKEN }}" | |
steps: | |
- name: "Checkout repository" | |
uses: "actions/checkout@v4" | |
- name: "Auto-merge Dependabot PRs" | |
run: "PR_LABEL=$(gh pr view ${{ github.event.pull_request.number }} --json labels\ | |
\ --jq '.labels[].name' | grep -i 'automerge')\nif [ \"$PR_LABEL\" == \"automerge\"\ | |
\ ]; then\n gh pr merge ${{ github.event.pull_request.number }} --rebase\ | |
\ --auto\nfi\n" |