Skip to content

Commit 9b9bf37

Browse files
committed
ci: rename release_body input to body in workflow
1 parent be50803 commit 9b9bf37

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/linear-deployed.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Move Linear tickets to Deployed
33
on:
44
workflow_call:
55
inputs:
6-
release_body:
6+
body:
77
required: true
88
type: string
99
team_key:
@@ -23,12 +23,12 @@ jobs:
2323
LINEAR_GITHUB_API_KEY: ${{ secrets.LINEAR_GITHUB_API_KEY }}
2424
TEAM_KEY: ${{ inputs.team_key }}
2525
run: |
26-
RELEASE_BODY=$(cat <<'EOF'
27-
${{ inputs.release_body }}
26+
BODY=$(cat <<'EOF'
27+
${{ inputs.body }}
2828
EOF
2929
)
3030
31-
TICKETS=$(echo "$RELEASE_BODY" | grep -oE 'SDK-[0-9]+' | sort -u)
31+
TICKETS=$(echo "$BODY" | grep -oE 'SDK-[0-9]+' | sort -u)
3232
3333
if [ -z "$TICKETS" ]; then
3434
echo "No SDK tickets found in release notes"

0 commit comments

Comments
 (0)