We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87336db commit ae523bfCopy full SHA for ae523bf
.github/workflows/bump-agent-versions.sh
@@ -31,5 +31,6 @@ else
31
--label 'skip-changelog' \
32
--label 'backport-skip' \
33
--repo $GITHUB_REPOSITORY)
34
- echo "pr=$pr" >> $GITHUB_OUTPUT # set the step output for Slack notifications
+ echo "pr=$pr" >> "$GITHUB_OUTPUT" # set the step output for Slack notifications
35
+ echo "Created a PR with the file update: $pr"
36
fi
.github/workflows/bump-agent-versions.yml
@@ -55,7 +55,7 @@ jobs:
55
channel: "#ingest-notifications"
56
57
# if a PR was created as a result of this job, we notify on the Slack channel
58
- - if: ${{ startsWith(steps.update.output.pr, 'https') }}
+ - if: ${{ startsWith(steps.update.outputs.pr, 'https') }}
59
uses: elastic/apm-pipeline-library/.github/actions/slack-message@current
60
with:
61
url: ${{ secrets.VAULT_ADDR }}
0 commit comments