Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0 #202
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: '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 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# Depending on your needs, you can use a token that will re-trigger workflows | |
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: dangoslen/dependabot-changelog-helper@v3 | |
with: | |
activationLabel: 'dependencies' | |
changelogPath: './CHANGELOG.md' | |
# This step is required for committing the changes to your branch. | |
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Updated Changelog\n\n[dependabot skip]" |