Skip to content

Commit

Permalink
Fix github_changelog_generator defaults
Browse files Browse the repository at this point in the history
Due to bug janheinrichmerker/action-github-changelog-generator#23
we have to set booleans explicitly.

Signed-off-by: Dinar Valeev <[email protected]>
  • Loading branch information
k0da committed Mar 22, 2021
1 parent d642b0c commit a55d51d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/helm_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
project: k8gb
pullRequests: true
author: true
issues: true
issuesWoLabels: true
prWoLabels: true
compareLink: true
filterByMilestone: true
unreleased: true
- name: Commit changelog
run: |
git config user.name 'Github Action'
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,16 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
project: k8gb
pullRequests: true
sinceTag: ${{ steps.get_tag.outputs.previous_tag }}
output: changes
pullRequests: true
author: true
issues: true
issuesWoLabels: true
prWoLabels: true
compareLink: true
filterByMilestone: true
unreleased: true
- name: Set up Go
uses: actions/setup-go@v2
with:
Expand Down

0 comments on commit a55d51d

Please sign in to comment.