Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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!
```