Skip to content

Commit

Permalink
refactor: wrap GITHUB_OUTPUT env var in double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ovasdi committed May 22, 2023
1 parent f4116fe commit 9706b67
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/facilitate-incident-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Run CLI
id: cli
run: echo "PAYLOAD=$(artsy scheduled:facilitate-incident-review --useDatesVar)" >> $GITHUB_OUTPUT
run: echo "PAYLOAD=$(artsy scheduled:facilitate-incident-review --useDatesVar)" >> "$GITHUB_OUTPUT"
env:
OPSGENIE_API_KEY: ${{ secrets.OPSGENIE_API_KEY }}
SLACK_WEB_API_TOKEN: ${{ secrets.SLACK_WEB_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/next-on-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Run CLI
id: cli
run: echo "PAYLOAD=$(artsy scheduled:next-on-call)" >> $GITHUB_OUTPUT
run: echo "PAYLOAD=$(artsy scheduled:next-on-call)" >> "$GITHUB_OUTPUT"
env:
OPSGENIE_API_KEY: ${{ secrets.OPSGENIE_API_KEY }}
SLACK_WEB_API_TOKEN: ${{ secrets.SLACK_WEB_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/open-rfcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Run CLI
id: cli
run: echo "PAYLOAD=$(artsy scheduled:rfcs)" >> $GITHUB_OUTPUT
run: echo "PAYLOAD=$(artsy scheduled:rfcs)" >> "$GITHUB_OUTPUT"
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/recently-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Run CLI
id: cli
run: echo "PAYLOAD=$(artsy scheduled:recently-published)" >> $GITHUB_OUTPUT
run: echo "PAYLOAD=$(artsy scheduled:recently-published)" >> "$GITHUB_OUTPUT"
env:
SLACK_WEB_API_TOKEN: ${{ secrets.SLACK_WEB_API_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standup-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Run CLI
id: cli
run: echo "PAYLOAD=$(artsy scheduled:standup-reminder)" >> $GITHUB_OUTPUT
run: echo "PAYLOAD=$(artsy scheduled:standup-reminder)" >> "$GITHUB_OUTPUT"
env:
OPSGENIE_API_KEY: ${{ secrets.OPSGENIE_API_KEY }}
SLACK_WEB_API_TOKEN: ${{ secrets.SLACK_WEB_API_TOKEN }}
Expand Down

0 comments on commit 9706b67

Please sign in to comment.