Skip to content

Commit

Permalink
fix: empty commit for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jul 11, 2022
1 parent 36296e1 commit 8ed20e0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/pipeline-config-scrapper/index.js.map

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,36 @@ Checkout the test repositories:

## Usage

```mermaid
stateDiagram-v2
direction LR
[*] --> Analysis
state if_state <<choice>>
Analysis --> if_state
if_state --> StaticAnalysis: event=push
if_state --> StaticAnalysis: event=pullrequest
if_state --> Build : event=deployment
StaticAnalysis --> Test
state fork_state <<fork>>
Test --> fork_state
fork_state --> LTS
fork_state --> Current
fork_state --> Latest
state join_state <<join>>
LTS --> join_state
Current --> join_state
Latest --> join_state
join_state --> Trigger
Trigger --> [*]
Build --> Deploy
Deploy --> [*]
```

### Repository Structure

```
Expand Down

0 comments on commit 8ed20e0

Please sign in to comment.