We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb0c56b commit 10105d8Copy full SHA for 10105d8
.github/workflows/auto-simple-suite.yaml
@@ -36,10 +36,13 @@ jobs:
36
path: playwright-report/
37
retention-days: 7
38
39
- - name: Post to Slack
40
- env:
41
- SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
42
- run: |
43
- curl -X POST -H 'Content-type: application/json' \
44
- --data '{"text":"Simple suite results are ready"}' \
45
- $SLACK_WEBHOOK_URL
+ post-slack-notification-started:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Post a message in a channel
+ uses: slackapi/slack-github-action@v2.1.1
+ with:
+ webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
46
+ webhook-type: incoming-webhook
47
+ payload: |
48
+ text: "Simple suite pipeline started"
0 commit comments