We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be50803 commit 9b9bf37Copy full SHA for 9b9bf37
1 file changed
.github/workflows/linear-deployed.yml
@@ -3,7 +3,7 @@ name: Move Linear tickets to Deployed
3
on:
4
workflow_call:
5
inputs:
6
- release_body:
+ body:
7
required: true
8
type: string
9
team_key:
@@ -23,12 +23,12 @@ jobs:
23
LINEAR_GITHUB_API_KEY: ${{ secrets.LINEAR_GITHUB_API_KEY }}
24
TEAM_KEY: ${{ inputs.team_key }}
25
run: |
26
- RELEASE_BODY=$(cat <<'EOF'
27
- ${{ inputs.release_body }}
+ BODY=$(cat <<'EOF'
+ ${{ inputs.body }}
28
EOF
29
)
30
31
- TICKETS=$(echo "$RELEASE_BODY" | grep -oE 'SDK-[0-9]+' | sort -u)
+ TICKETS=$(echo "$BODY" | grep -oE 'SDK-[0-9]+' | sort -u)
32
33
if [ -z "$TICKETS" ]; then
34
echo "No SDK tickets found in release notes"
0 commit comments