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.
2 parents 73b7fe2 + 08c5f62 commit 19a58fcCopy full SHA for 19a58fc
.github/workflows/issue_creation_workflow.yml
@@ -33,8 +33,10 @@ jobs:
33
34
- name: Validate Issue Content
35
id: validate-issue
36
+ env:
37
+ ISSUE_BODY: ${{ github.event.issue.body }}
38
run: |
- issue_body="${{ github.event.issue.body }}"
39
+ issue_body="$ISSUE_BODY"
40
if [[ "$issue_body" == *"AI-generated content"* ]] || [[ "$issue_body" == *"existing sites"* ]]; then
41
echo "Issue body contains disallowed content."
42
exit 1
0 commit comments