Skip to content

Commit

Permalink
fixup! fixup! fixup! Fix gh_create_issue input formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Nov 27, 2023
1 parent e6ac1d8 commit 8a988ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/actions/gh_create_issue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ runs:
#yq -iP ". += { \"fields\": $(echo "${{ inputs.fields }}" | yq -P '.' -) }" inputs.json
#cat inputs.json
out=$(./.github/actions/gh_create_issue/create_issue.sh inputs.json)
cat inputs.json
#out=$(./.github/actions/gh_create_issue/create_issue.sh inputs.json)
echo "issue-url=${out}" | tee -a "$GITHUB_OUTPUT"
8 changes: 4 additions & 4 deletions .github/actions/notify_e2e_failure/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ runs:
assignee: ${{ steps.pick-assignee.outputs.assignee }}
project: Constellation bugs
fields: |
workflow: ${{ github.workflow }}
kubernetesVersion: ${{ inputs.kubernetesVersion }}
workflow: "${{ github.workflow }}"
kubernetesVersion: "${{ inputs.kubernetesVersion }}"
cloudProvider: ${{ inputs.provider }}
test: ${{ inputs.test }}
refStream: ${{ inputs.refStream }}
test: "${{ inputs.test }}"
refStream: "${{ inputs.refStream }}"
token: ${{ inputs.projectWriteToken }}

- name: Issue URL ${{ steps.gh_create_issue.outputs.issue-url }}
Expand Down

0 comments on commit 8a988ce

Please sign in to comment.