New notice file (#120) #454
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: generate plantuml | |
on: push | |
jobs: | |
generate_plantuml: | |
runs-on: ubuntu-latest | |
name: plantuml | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: generate plantuml | |
run: | | |
sudo apt-get install -y plantuml graphviz | |
# This uses a slightly off-white background color because #ffffff renders as transparent for some reason | |
plantuml -tsvg -SbackgroundColor=fefefe -checkmetadata -v **/*.puml | |
shell: bash | |
- name: commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: Automated Notice Generation Pipeline | |
author_email: [email protected] | |
message: Generate PlantUML Diagrams | |
pathspec_error_handling: exitAtEnd |