-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: mitigate script injection attack in test_weaver-pre-release.yaml
Fixes the script injection attack mentioned here: https://hackerone.com/reports/2471956 Signed-off-by: Sandeep Nishad <[email protected]>
- Loading branch information
1 parent
514dc68
commit 6be6447
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,9 +23,11 @@ jobs: | |
|
||
- name: Ignore if not a release PR | ||
id: early | ||
env: | ||
TITLE: ${{ github.event.pull_request.title }} | ||
run : | | ||
status="skip" | ||
if echo "${{ github.event.pull_request.title }}" | grep -q "chore(release)"; then | ||
if echo ${TITLE} | grep -q "chore(release)"; then | ||
status="continue" | ||
fi | ||
echo "status=$status" >> $GITHUB_OUTPUT | ||
|
@@ -39,10 +41,12 @@ jobs: | |
- uses: actions/[email protected] | ||
|
||
- name: Get release verison from PR title | ||
env: | ||
TITLE: ${{ github.event.pull_request.title }} | ||
run: | | ||
# Assuming release PR follows pattern: chore(release): publish vA.B.C | ||
# Split PR title by space, and take 3rd word | ||
VERSION=$(echo "${{ github.event.pull_request.title }}" | cut -d ' ' -f 3) | ||
VERSION=$(echo "${TITLE}" | cut -d ' ' -f 3) | ||
# Strip "v" from version | ||
VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
|
@@ -146,10 +150,12 @@ jobs: | |
- uses: actions/[email protected] | ||
|
||
- name: Get release verison from PR title | ||
env: | ||
TITLE: ${{ github.event.pull_request.title }} | ||
run: | | ||
# Assuming release PR follows pattern: chore(release): publish vA.B.C | ||
# Split PR title by space, and take 3rd word | ||
VERSION=$(echo "${{ github.event.pull_request.title }}" | cut -d ' ' -f 3) | ||
VERSION=$(echo "${TITLE}" | cut -d ' ' -f 3) | ||
# Strip "v" from version | ||
VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
|