Skip to content

Commit 8c6fdd6

Browse files
committed
Flip the condition back after checking
1 parent 1a01141 commit 8c6fdd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/email-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "EMAIL=$(git show -s --format='%ae' HEAD~0)" >> $GITHUB_OUTPUT
2121
2222
- name: Validate author email
23-
if: ${{ !endsWith(steps.author.outputs.EMAIL, 'noreply.github.com') }}
23+
if: ${{ endsWith(steps.author.outputs.EMAIL, 'noreply.github.com') }}
2424
uses: actions/github-script@v6
2525
env:
2626
EMAIL: ${{ steps.author.outputs.EMAIL }}

0 commit comments

Comments
 (0)