Bump org.mockito:mockito-junit-jupiter from 5.12.0 to 5.15.2 #711
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: 'pull-request' | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
- labeled | |
- unlabeled | |
# TODO: only request needed permissions | |
permissions: write-all | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# This token will trigger workflow jobs on push | |
token: ${{ secrets.GIT_PUSH_TOKEN }} | |
- uses: dangoslen/dependabot-changelog-helper@v3 | |
with: | |
activationLabels: 'dependencies' | |
changelogPath: './CHANGELOG.md' | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Updated Changelog\n\n[dependabot skip]" |