Skip to content

Commit 9902e79

Browse files
author
Amelia Wattenbeger
committed
init
0 parents  commit 9902e79

File tree

12 files changed

+14997
-0
lines changed

12 files changed

+14997
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Repo Visualizer
2+
3+
A GitHub Action that creates an SVG diagram of your repo.
4+
5+
## Inputs
6+
7+
## `output_file`
8+
9+
A path (relative to the root of your repo) to where you would like the diagram to live. For example: images/diagram.svg. Default: diagram.svg
10+
11+
## Example usage
12+
13+
```
14+
uses: githubocto/[email protected]
15+
with:
16+
output_file: 'images/diagram.svg'
17+
```

action.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Repo Visualizer"
2+
description: "A GitHub Action that creates an SVG diagram of your repo"
3+
author: "GitHub OCTO"
4+
inputs:
5+
output_file:
6+
description: "A path (relative to the root of your repo) to where you would like the diagram to live. For example: images/diagram.svg. Default: diagram.svg"
7+
required: false
8+
outputs:
9+
runs:
10+
using: "node12"
11+
main: "index.js"
12+
branding:
13+
color: "purple"
14+
icon: "download-cloud"

0 commit comments

Comments
 (0)