Skip to content

Commit 765ff86

Browse files
authoredFeb 19, 2024··
.github: Fix external user notification workflow (#25361)
Due to some subtleties around how GH Actions handles booleans, the workflow never triggered for external contributors.
1 parent a7e5369 commit 765ff86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.github/workflows/slack_notify_opened.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040
- name: Push to Slack
4141
if: |
42-
steps.is_organization_member.outputs.result == false
42+
${{ steps.is_organization_member.outputs.result == 'false' }}
4343
uses: actions-ecosystem/action-slack-notifier@fc778468d09c43a6f4d1b8cccaca59766656996a
4444
with:
4545
slack_token: ${{ secrets.SLACK_TOKEN }}
46-
channel: devex
46+
channel: product
4747
custom_payload: |
4848
{
4949
"blocks": [

0 commit comments

Comments
 (0)
Please sign in to comment.