mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
11 lines
393 B
YAML
11 lines
393 B
YAML
name: Notify Slack
|
|
inputs:
|
|
token:
|
|
required: true
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: >-
|
|
curl -X POST -H 'Content-type: application/json' --data '{"attachments": [{"text": "Job in *nightly* failed", "footer": "<https://github.com/php/php-src/actions/runs/${{ github.run_id }}|View Run>", "color": "danger", "mrkdwn_in": ["text"]}]}' ${{ inputs.token }}
|