Skip to content

Commit

Permalink
WIP: ci/cd: fix generate-changelog workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-introvert authored Mar 29, 2023
1 parent ce3ae4f commit c2a9c56
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/generate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,29 @@ on:
- created

jobs:
changelog:
checkout:
name: checkout
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
setup:
name: setup
runs-on: ubuntu-latest
needs: checkout
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup_node
uses: actions/setup-node@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: changelog
uses: TriPSs/conventional-changelog-action@v3
changelog:
runs-on: ubuntu-latest
needs: setup
steps:
- uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.github_token }}
git-message: 'chore(release): {version}'
skip-git-pull: true
skip-tag: true
skip-commit: true
git-url: "https://github.com/USERNAME/REPO_NAME"
git-url: "https://github.com"

0 comments on commit c2a9c56

Please sign in to comment.