Skip to content

Commit 6a0e4fd

Browse files
fix: Specify the shell to use in create-linear-issue action
1 parent 0ba2615 commit 6a0e4fd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/actions/create-linear-issue/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ runs:
2222
env:
2323
LINEAR_CLIENT_ID: ${{ inputs.linear_client_id }}
2424
LINEAR_CLIENT_SECRET: ${{ inputs.linear_client_secret }}
25+
shell: bash
2526
run: |
2627
RESPONSE=$(curl -s -X POST https://api.linear.app/oauth/token \
2728
-H "Content-Type: application/x-www-form-urlencoded" \
@@ -43,6 +44,7 @@ runs:
4344
id: get_team
4445
env:
4546
ACCESS_TOKEN: ${{ steps.get_access_token.outputs.access_token }}
47+
shell: bash
4648
run: |
4749
RESPONSE=$(curl -s -X POST https://api.linear.app/graphql \
4850
-H "Content-Type: application/json" \
@@ -57,6 +59,7 @@ runs:
5759
env:
5860
ACCESS_TOKEN: ${{ steps.get_access_token.outputs.access_token }}
5961
TEAM_ID: ${{ steps.get_team.outputs.team_id }}
62+
shell: bash
6063
run: |
6164
TITLE="${{ github.event.inputs.title }}"
6265
DESCRIPTION="${{ github.event.inputs.description }}"

0 commit comments

Comments
 (0)