Skip to content

Commit

Permalink
Merge pull request #9 from warpdotdev/aloke/generate_changelog
Browse files Browse the repository at this point in the history
Add action that generates changelog
  • Loading branch information
alokedesai authored Apr 17, 2022
2 parents e7fbbaa + b1012c9 commit 911d300
Show file tree
Hide file tree
Showing 13 changed files with 24,808 additions and 427 deletions.
71 changes: 0 additions & 71 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

8 changes: 1 addition & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,4 @@ jobs:
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./
with:
milliseconds: 1000
29 changes: 0 additions & 29 deletions __tests__/main.test.ts

This file was deleted.

21 changes: 15 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
name: 'Your name here'
description: 'Provide a description here'
author: 'Your name or organization here'
name: 'Generate Warp Changelog'
description: 'Generates a Warp changelog for a given version and release channel'
author: 'warpdotdev'
inputs:
milliseconds: # change this
github_auth_token:
required: true
description: 'input description here'
default: 'default value if applicable'
description: 'The auth token to authenticate requests to the GitHub API'
version:
required: true
description: 'The current version of the app the changelog should be generated for'
channel:
required: true
description: 'The channel the changelog should be generated for. One of stable/beta/dev.'
outputs:
changelog:
description: 'The generated changelog, as JSON'

runs:
using: 'node16'
main: 'dist/index.js'
39 changes: 39 additions & 0 deletions dist/exec-child.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 911d300

Please sign in to comment.