We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64323ac commit 2f1bdfeCopy full SHA for 2f1bdfe
1 file changed
.github/workflows/pr-comment.yml
@@ -64,7 +64,8 @@ jobs:
64
steps:
65
- name: Validate inputs
66
run: |
67
- if ! [[ "${{ env.TARGET }}" =~ "^go-openapi\/.*$" ]] ; then
+ rex='^go-openapi\/.*$'
68
+ if ! [[ "${{ env.TARGET }}" =~ $rex ]] ; then
69
echo "This workflow only applies to target repos in github.com/go-openapi."
70
exit 1
71
fi
0 commit comments