-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#674] Add "introspective" variant statechart image
- create variant-introspective.mmd - update other diagrams to add "VCS" on VCS-related actions - generate png files
- Loading branch information
1 parent
4bc5d1f
commit 0a5864a
Showing
8 changed files
with
30 additions
and
6 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
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,24 @@ | ||
stateDiagram-v2 | ||
direction LR | ||
state "⚙️ build" as Build | ||
state "⚙️ test" as Test | ||
state "✅ VCS commit (src + tests)" as CommitPass | ||
state "❌ VCS commit (src + tests)" as CommitFail | ||
state "⏪ VCS revert (last commit)" as CommitRevert | ||
|
||
[*] --> Build | ||
Build --> Test: pass | ||
Build --> [*]: fail | ||
Test --> CommitPass: pass | ||
Test --> CommitFail: fail | ||
CommitPass --> [*] | ||
CommitFail --> CommitRevert | ||
CommitRevert --> [*] | ||
classDef actionClass fill: #0077CC | ||
classDef okClass fill: #006600 | ||
classDef failClass fill: #660000 | ||
class Build actionClass | ||
class Test actionClass | ||
class CommitPass okClass | ||
class CommitFail failClass | ||
class CommitRevert actionClass |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.