build(deps): bump org.apache.maven.plugins:maven-compiler-plugin from 3.11.0 to 3.12.0 #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
on: | |
pull_request: | |
types: [opened, edited] | |
jobs: | |
label_regex: | |
runs-on: ubuntu-latest | |
name: Add label | |
steps: | |
- name: "Assign fix label to new Pull Request" | |
uses: Bhacaz/label-regex@v2 | |
with: | |
field: title | |
regex: '(fix+?)' | |
lowercase: true | |
token: ${{ github.token }} | |
- name: "Assign feat label to new Pull Request" | |
uses: Bhacaz/label-regex@v2 | |
with: | |
field: title | |
regex: '(feat+?)' | |
lowercase: true | |
token: ${{ github.token }} | |
- name: "Assign chore label to new Pull Request" | |
uses: Bhacaz/label-regex@v2 | |
with: | |
field: title | |
regex: '(chore+?)' | |
lowercase: true | |
token: ${{ github.token }} | |
- name: "Assign ci label to new Pull Request" | |
uses: Bhacaz/label-regex@v2 | |
with: | |
field: title | |
regex: '(ci+?)' | |
lowercase: true | |
token: ${{ github.token }} |