Files
linea-monorepo/.github/workflows/slack-notify-external-contributions.yml

54 lines
2.0 KiB
YAML

name: Notify Slack on external issue creation
on:
issues:
types: [ opened ]
jobs:
notify-if-external:
runs-on: ubuntu-latest
steps:
- name: Check if user is member of Consensys/linea team
id: check-team-membership
run: |
AUTHOR="${{ github.event.sender.login }}"
# Check if user is member of @Consensys/linea team
HTTP_STATUS=$(curl -s -w "%{http_code}" -o /tmp/team_response.json \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.SLACK_ORG_ACCESS }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/orgs/Consensys/teams/linea/memberships/$AUTHOR)
echo "Team membership check status: $HTTP_STATUS"
echo "Response body:"
cat /tmp/team_response.json || echo "No response body"
if [ "$HTTP_STATUS" -eq 200 ]; then
echo "User $AUTHOR is a member of @Consensys/linea team"
echo "is_team_member=true" >> $GITHUB_OUTPUT
elif [ "$HTTP_STATUS" -eq 404 ]; then
echo "User $AUTHOR is NOT a member of @Consensys/linea team"
echo "is_team_member=false" >> $GITHUB_OUTPUT
else
echo "Error checking team membership (HTTP $HTTP_STATUS). Treating as external to be safe."
echo "is_team_member=false" >> $GITHUB_OUTPUT
fi
- name: Send Slack notification if external
if: steps.check-team-membership.outputs.is_team_member == 'false'
run: |
TITLE="${{ github.event.issue.title }}"
URL="${{ github.event.issue.html_url }}"
AUTHOR="${{ github.event.sender.login }}"
PAYLOAD=$(jq -n \
--arg type "$TYPE" \
--arg title "$TITLE" \
--arg url "$URL" \
--arg author "$AUTHOR" \
'{text: "*New Issue*\n\"\($title)\" by *\($author)*\n👉 \($url)"}')
curl -X POST -H "Content-type: application/json" \
--data "$PAYLOAD" \
${{ secrets.SLACK_WEBHOOK_URL }}