forked from yegor256/0pdd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
h1alexbel
committed
Jan 4, 2024
1 parent
b5ce1be
commit ac11559
Showing
5 changed files
with
77 additions
and
10 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,26 @@ | ||
name: plantuml | ||
on: | ||
push: | ||
paths: | ||
- '**.puml' | ||
branches: | ||
- master | ||
permissions: | ||
contents: write | ||
jobs: | ||
plantuml: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout Source | ||
uses: actions/checkout@v4 | ||
- name: Generate SVG Diagrams | ||
uses: holowinski/plantuml-github-action@main | ||
with: | ||
args: -v -tsvg diagrams/*.puml | ||
- name: Commit changes | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: ${{ secrets.USERNAME }} | ||
author_email: ${{ secrets.EMAIL }} | ||
message: 'Diagram generated' | ||
add: 'doc/*' |
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,14 @@ | ||
@startuml | ||
title LinerModel 0pdd Integration | ||
participant "Git Repo" as repo | ||
participant 0pdd | ||
participant LinerModel as lm | ||
|
||
0pdd -> repo | ||
repo --> 0pdd: .0pdd.yml | ||
alt model: true | ||
0pdd -> lm: Puzzles | ||
lm --> 0pdd: Ranked puzzles | ||
0pdd --> repo: Ranked puzzles | ||
end | ||
@enduml |
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
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
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