Skip to content

Commit ee8ea0b

Browse files
authored
fix(ci): Sanitize PR title by using ENV (#219)
As a follow up to #218 we need to further sanitize by using the intermediate step of using an environment variable to avoid possible script injection attack.
1 parent a62501e commit ee8ea0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/conventional-commits.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
check:
2222
name: conventional-pr-title:required
2323
runs-on: ubuntu-latest
24+
env:
25+
TITLE: ${{ github.event.pull_request.title }}
2426
steps:
2527
# Conventional commit patterns:
2628
# verb: description
@@ -31,7 +33,7 @@ jobs:
3133
# scope: refers to the part of code being changed. E.g. " (accounts)" or " (accounts,canisters)"
3234
# !: Indicates that the PR contains a breaking change.
3335
- run: |
34-
if [[ "${{ github.event.pull_request.title }}" =~ ^(feat|fix|chore|build|ci|docs|style|refactor|perf|test)(\([-a-zA-Z0-9,]+\))?\!?\: ]]; then
36+
if [[ "$TITLE" =~ ^(feat|fix|chore|build|ci|docs|style|refactor|perf|test)(\([-a-zA-Z0-9,]+\))?\!?\: ]]; then
3537
echo pass
3638
else
3739
echo "PR title does not match conventions"

0 commit comments

Comments
 (0)