Skip to content

Commit f5a4ec8

Browse files
authored
feat: 🎉 create depot json from github releases
1 parent b30ffed commit f5a4ec8

File tree

12 files changed

+32664
-803
lines changed

12 files changed

+32664
-803
lines changed

action.yml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,33 @@ branding:
99

1010
# Define your inputs here.
1111
inputs:
12-
milliseconds:
13-
description: 'Your input description here'
12+
repo:
13+
description: 'The string represetation of the repo name (eg: lemlib/lemlib)'
14+
required: false
15+
16+
github_token:
17+
description: 'Your GitHub Access Token. Necessary to not get rate limited.'
18+
required: true
19+
default: ${{ github.token }}
20+
21+
branch:
22+
description: 'The branch you want to put the depot json on.'
23+
required: true
24+
default: 'depot'
25+
26+
path:
27+
description: 'The path to the depot json.'
28+
required: true
29+
default: 'depot.json'
30+
31+
readable-json:
32+
description: 'Whether the depot json should be formatted to be human readable (true/false).'
1433
required: true
15-
default: '1000'
34+
default: false
35+
36+
messsage:
37+
description: 'The commit message for the new commit depot json.'
38+
required: false
1639

1740
# Define your outputs here.
1841
outputs:

0 commit comments

Comments
 (0)