-
Notifications
You must be signed in to change notification settings - Fork 32
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
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 doc/*.puml | ||
- name: Commit changes | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: ${{ github.actor }} | ||
author_email: ${{ github.event.pusher.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
9d7b1ae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
532-a6c77906
discovered inmodel/linear.rb
) and submitted as #562. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.9d7b1ae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
532-c8e80cf1
discovered inmodel/linear.rb
) and submitted as #563. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.9d7b1ae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
532-cf0ceb1a
discovered inobjects/puzzles.rb
) and submitted as #564. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.