Skip to content

Commit 315e49f

Browse files
fix: Use action inputs instead of github.events.inputs
1 parent 993c75f commit 315e49f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ runs:
6262
TEAM_ID: ${{ steps.get_team.outputs.team_id }}
6363
shell: bash
6464
run: |
65-
TITLE="${{ github.event.inputs.title }}"
66-
DESCRIPTION="${{ github.event.inputs.description }}"
65+
TITLE="${{ inputs.title }}"
66+
DESCRIPTION="${{ inputs.description }}"
6767
6868
RESPONSE=$(curl -s -X POST https://api.linear.app/graphql \
6969
-H "Content-Type: application/json" \

0 commit comments

Comments
 (0)