We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
quoted
1 parent abdb417 commit 165cda6Copy full SHA for 165cda6
.github/workflows/message.yml
@@ -20,8 +20,10 @@ jobs:
20
fetch-depth: 0
21
22
- name: Validate Tag
23
+ env:
24
+ TITLE: ${{ github.event.pull_request.title }}
25
run: |
- TAG=$(echo ${{ github.event.pull_request.title }} | sed -ne 's/\[\(.*\)\].*/\1/p')
26
+ TAG=$(echo "$TITLE" | sed -ne 's/\[\(.*\)\].*/\1/p')
27
if grep -q "tag: \"\[$TAG\]\"" .codegen/changelog_config.yml; then
28
echo "Valid tag found: [$TAG]"
29
else
0 commit comments