Merge pull request #849 from mathieucarbou/dependabot/maven/maven-plu… #519
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: Snapshot plugin report | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
- 'docs/**' | |
jobs: | |
generate-site: | |
if: github.repository_owner == 'mathieucarbou' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '21' | |
cache: 'maven' | |
- name: Build with Maven | |
run: ./mvnw clean install site -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: '[GA] Update snapshot report' | |
title: '[GA] Update snapshot report' | |
body: 'This is an auto-generated PR to update the snapshot report.' | |
labels: 'in:doc' | |
branch: generate-site | |
delete-branch: true |