build(deps): bump org.jacoco:jacoco-maven-plugin from 0.8.14 to 0.8.15 #2590
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: "Lint PR" | |
| on: | |
| pull_request_target: | |
| # BE CAREFUL - this event runs in the context of the default branch (`main`) workflow definition in the target | |
| # repository (NOT the fork's context), so it has potentially sensitive access. | |
| # It is critical that this only runs on very limited events and/or access to the repo | |
| # Read https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#pull_request_target | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| permissions: | |
| contents: read | |
| jobs: | |
| main: | |
| name: Validate PR title | |
| permissions: | |
| pull-requests: read | |
| statuses: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |