Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthonyfok/github-experiments
Experiments with GitHub Actions
https://github.com/anthonyfok/github-experiments
Last synced: 7 days ago
JSON representation
Experiments with GitHub Actions
- Host: GitHub
- URL: https://github.com/anthonyfok/github-experiments
- Owner: anthonyfok
- Created: 2021-03-31T19:24:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T22:24:00.000Z (almost 3 years ago)
- Last Synced: 2024-11-09T23:36:58.993Z (2 months ago)
- Size: 5.26 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# github-experiments
Experiments with GitHub Actions, etc.Hot off the press in February 2022!
* github/roadmap#372
* [Include diagrams in your Markdown files with Mermaid | The GitHub Blog](https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/)Here is a simple flow chart:
```mermaid
graph LR;
A-->B;
A-->C;
B-->D;
C-->D;
```Git graph
```mermaid
gitGraph:
options
{
"nodeSpacing": 150,
"nodeRadius": 10
}
end
commit
branch newbranch
checkout newbranch
commit
commit
checkout master
commit
commit
merge newbranch
```Pie chart
```mermaid
pie title Pets adopted by volunteers
"Dogs" : 386
"Cats" : 85
"Rats" : 35
```Sequence diagram
```mermaid
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts
prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```