Update Changelog #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Changelog | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| releaseversion: | |
| description: 'Specify release version (e.g. 2.0.1)' | |
| required: true | |
| default: '' | |
| jobs: | |
| generate-changelog: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: setup node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "15.x" | |
| - name: Install packages | |
| run: npm install | |
| working-directory: ./dev-tools | |
| - name: Generate CHANGELOG.md | |
| run: npm run create-changelog -- --releaseVersion=${{github.event.inputs.releaseversion}} | |
| working-directory: ./dev-tools | |
| - uses: EndBug/[email protected] | |
| with: | |
| author_name: github-actions | |
| author_email: 41898282+github-actions[bot]@users.noreply.github.com |