Skip to content

Commit

Permalink
Merge pull request #150 from H4ad/ci/include-all-commits-on-release
Browse files Browse the repository at this point in the history
ci(release): include all commits on release
  • Loading branch information
H4ad authored Dec 22, 2023
2 parents 1e69fc6 + 93d8f1c commit 8660e21
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,23 @@ name: CodeQL

on:
push:
paths:
- 'src/**'
- 'package-lock.json'
- 'package.json'
- 'tsconfig.json'
- 'tsconfig.*.json'
- 'vite.config.ts'
branches:
- main
pull_request:
paths:
- 'src/**'
- 'package-lock.json'
- 'package.json'
- 'tsconfig.json'
- 'tsconfig.*.json'
- 'vite.config.ts'
branches:
- main
schedule:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ jobs:
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN_GITHUB }}
release-type: node
changelog-types: >
[
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "build", "section": "Build Related", "hidden": false },
{ "type": "chore", "section": "Chores", "hidden": false },
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
{ "type": "ci", "section": "CI", "hidden": false },
{ "type": "refactor", "section": "Refactoring", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false }
]
- name: Checkout Code
if: ${{ steps.release.outputs.release_created }}
Expand Down

0 comments on commit 8660e21

Please sign in to comment.