Skip to content

Commit

Permalink
feat: re-generate plantuml images in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
typeid committed Sep 4, 2023
1 parent aca59cf commit 0645d3e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pr-plantuml-generate.yaml
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

0 comments on commit 0645d3e

Please sign in to comment.