Skip to content

Commit

Permalink
refactor github actions iteration=14
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 890b1dd commit 0044a71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/comment_action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ runs:
with:
github-token: ${{ inputs.token }}
script: |
const issue_number = ${{ inputs.issue_number }};
const owner = ${{ inputs.owner }};
const repo = ${{ inputs.repo }};
const issue_number = "${{ inputs.issue_number }}";
const owner = "${{ inputs.owner }}";
const repo = "${{ inputs.repo }}";
await github.rest.issues.createComment({
owner: owner,
repo: repo,
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scale_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
steps:
- name: Get target Droplet IP and Droplet Count
id: get_target_droplet_ip
uses: unstructuredstudio/zubhub/.github/actions/doctl_action@master
with:
token: ${{ secrets.DO_ACCESS_TOKEN }}
script: |
Expand Down

0 comments on commit 0044a71

Please sign in to comment.