Skip to content

fix(ios): resolve Xcode 26 build failures with fmt consteval and iconโ€ฆ #30

fix(ios): resolve Xcode 26 build failures with fmt consteval and iconโ€ฆ

fix(ios): resolve Xcode 26 build failures with fmt consteval and iconโ€ฆ #30

Workflow file for this run

name: Slack Notifications
on:
issues:
types: [opened]
pull_request:
types: [opened]
issue_comment:
types: [created]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send to Slack
run: |
if [ "${{ github.event_name }}" = "issues" ]; then
TITLE="${{ github.event.issue.title }}"
URL="${{ github.event.issue.html_url }}"
EVENT="๐ŸŸข New Issue"
elif [ "${{ github.event_name }}" = "pull_request" ]; then
TITLE="${{ github.event.pull_request.title }}"
URL="${{ github.event.pull_request.html_url }}"
EVENT="๐Ÿ”ต New PR"
elif [ "${{ github.event_name }}" = "issue_comment" ]; then
TITLE="${{ github.event.issue.title }}"
URL="${{ github.event.comment.html_url }}"
EVENT="๐Ÿ’ฌ New Comment"
fi
curl -X POST "${{ secrets.SLACK_WEBHOOK_URL }}" \
-H "Content-Type: application/json" \
-d "{\"repo\":\"${{ github.repository }}\",\"event\":\"$EVENT\",\"title\":\"$TITLE\",\"url\":\"$URL\",\"user\":\"${{ github.actor }}\"}"