Skip to content

Commit

Permalink
maint: change title on release workflow from (unset) var to hard-code…
Browse files Browse the repository at this point in the history
…d string (honeycombio#474)

Error in previous workflow that attempted to create an issue states "Input required and not supplied: title".
While the title does match that of the example provided in the actions repo, it is based on a variable that is set in the example that we do not have set. I believe this is causing a blank title which is not allowed, as the title value is required. This PR changes the title from a variable that is unset ({ steps.date.outputs.today }}) to a hard-coded string (Bump Refinery to Latest Version).
  • Loading branch information
JamieDanielson authored Jul 6, 2022
1 parent 133a696 commit a789422
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Create helm chart issue on release
on:
release:
types: [published]
workflow_dispatch:
jobs:
create_issue:
runs-on: ubuntu-latest
Expand All @@ -11,7 +12,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repo: github.com/honeycombio/helm-charts
title: ${{ steps.date.outputs.today }}
title: Bump Refinery to Latest Version
body: |
## Bump Refinery
Expand Down

0 comments on commit a789422

Please sign in to comment.