-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: re-generate plantuml images in CI
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: PR verify-plantuml | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, synchronize, reopened] | ||
|
||
# Remove all permissions from GITHUB_TOKEN except metadata. | ||
permissions: {} | ||
|
||
jobs: | ||
plantuml-generate-check: | ||
name: Image generation reproducible test | ||
runs-on: ubuntu-latest | ||
container: | ||
image: plantuml/plantuml:1.2023 | ||
steps: | ||
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # tag=v3.6.0 | ||
- name: "Prerequisite: install git" | ||
run: apt-get -qq update && apt-get install -qq git # git is required for the diff, it isn't contained in the plantuml image | ||
- name: Generate Plantuml Images | ||
run: java -jar /opt/plantuml.jar ./docs/book/**/*.plantuml && java -jar /opt/plantuml.jar ./docs/proposals/**/*.plantuml | ||
- name: Check if anything changed | ||
run: | | ||
if git diff --quiet ./docs/; then | ||
echo "No changes from image re-generation." | ||
else | ||
echo "Re-generating images resulted in changes:" | ||
git status --porcelain | ||
exit 1 | ||
fi |