Skip to content

Commit 911d300

Browse files
authored
Merge pull request #9 from warpdotdev/aloke/generate_changelog
Add action that generates changelog
2 parents e7fbbaa + b1012c9 commit 911d300

File tree

13 files changed

+24808
-427
lines changed

13 files changed

+24808
-427
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,4 @@ jobs:
1515
npm install
1616
- run: |
1717
npm run all
18-
test: # make sure the action works on a clean machine without building
19-
runs-on: ubuntu-latest
20-
steps:
21-
- uses: actions/checkout@v2
22-
- uses: ./
23-
with:
24-
milliseconds: 1000
18+

__tests__/main.test.ts

Lines changed: 0 additions & 29 deletions
This file was deleted.

action.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
name: 'Your name here'
2-
description: 'Provide a description here'
3-
author: 'Your name or organization here'
1+
name: 'Generate Warp Changelog'
2+
description: 'Generates a Warp changelog for a given version and release channel'
3+
author: 'warpdotdev'
44
inputs:
5-
milliseconds: # change this
5+
github_auth_token:
66
required: true
7-
description: 'input description here'
8-
default: 'default value if applicable'
7+
description: 'The auth token to authenticate requests to the GitHub API'
8+
version:
9+
required: true
10+
description: 'The current version of the app the changelog should be generated for'
11+
channel:
12+
required: true
13+
description: 'The channel the changelog should be generated for. One of stable/beta/dev.'
14+
outputs:
15+
changelog:
16+
description: 'The generated changelog, as JSON'
17+
918
runs:
1019
using: 'node16'
1120
main: 'dist/index.js'

dist/exec-child.js

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)