Skip to content

Commit

Permalink
refactor github actions iteration=13
Browse files Browse the repository at this point in the history
fix error in github actions.
for context see #1052

Issue: #1030
Signed-off-by: Ndibe Raymond Olisaemeka <rolisaemeka-ctr@wikimedia.org>
  • Loading branch information
Ndibe Raymond Olisaemeka committed Dec 22, 2023
1 parent 464d246 commit f769c22
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/actions/comment_action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ runs:
const issue_number = ${{ inputs.issue_number }};
const owner = ${{ inputs.owner }};
const repo = ${{ inputs.repo }};
const message = ${{ inputs.message }};
await github.rest.issues.createComment({
owner: owner,
repo: repo,
issue_number: issue_number,
body: `${message}`
body: `${{ inputs.message }}`
});

0 comments on commit f769c22

Please sign in to comment.