Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: warpdotdev/generate-changelog
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e43c9d9351c985c39954203e9dccc1469def8bf3
Choose a base ref
..
head repository: warpdotdev/generate-changelog
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9ce15a470f0db20e1581044742001806792c8c19
Choose a head ref
Showing with 25,464 additions and 3,878 deletions.
  1. +0 −71 .github/workflows/codeql-analysis.yml
  2. +1 −7 .github/workflows/test.yml
  3. +0 −29 __tests__/main.test.ts
  4. +15 −6 action.yml
  5. +39 −0 dist/exec-child.js
  6. +12,419 −199 dist/index.js
  7. +1 −1 dist/index.js.map
  8. +530 −0 dist/licenses.txt
  9. +12,238 −3,545 package-lock.json
  10. +7 −4 package.json
  11. +202 −0 src/generate-changelog.ts
  12. +12 −7 src/main.ts
  13. +0 −9 src/wait.ts
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
@@ -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