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 e00c153 commit f7ecf83Copy full SHA for f7ecf83
.github/workflows/daily_reports.yaml
@@ -200,5 +200,17 @@ jobs:
200
steps:
201
- name: Post message to slack
202
env:
203
- SLACK_WEBHOOK: ${{ secrets.TEST_CHANNEL_SLACK }}
204
- run: sh .github/scripts/publish_link_flamegraphs.sh $SLACK_WEBHOOK
+ SLACK_WEBHOOKS: >
+ ${{ github.event_name == 'workflow_dispatch'
205
+ && secrets.TEST_CHANNEL_SLACK
206
+ || format(
207
+ '{0} {1} {2}',
208
+ secrets.ETHREX_L1_SLACK_WEBHOOK,
209
+ secrets.ETHREX_L2_SLACK_WEBHOOK,
210
+ secrets.LEVM_SLACK_WEBHOOK
211
+ )
212
+ }}
213
+ run: |
214
+ for webhook in $SLACK_WEBHOOKS; do
215
+ sh .github/scripts/publish_link_flamegraphs.sh "$webhook"
216
+ done
0 commit comments