File tree 1 file changed +4
-21
lines changed
1 file changed +4
-21
lines changed Original file line number Diff line number Diff line change @@ -13,29 +13,12 @@ jobs:
13
13
uses : actions/checkout@v2
14
14
15
15
- name : Execute stats
16
- id : step_one
17
16
run : |
18
17
stats_cases=$(node bin/gather-test-stats.js)
19
18
echo $stats_cases
20
19
echo "instana_stats_test_cases=$stats_cases" >> $GITHUB_ENV
21
20
22
- - name : Send slack message
23
- id : step_two
24
-
25
- with :
26
- channel-id : ${{ secrets.SLACK_CHANNEL_ID_TEAM }}
27
- payload : |
28
- {
29
- "text": "Team Node.js Test Stats",
30
- "attachments": [{
31
- "color": "good",
32
- "fields": [
33
- {
34
- "title": "Number of Test Cases in https://github.com/instana/nodejs:",
35
- "value": "$instana_stats_test_cases"
36
- }
37
- ]
38
- }]
39
- }
40
- env :
41
- SLACK_BOT_TOKEN : ${{ secrets.SLACK_BOT_TOKEN }}
21
+ - name : Print env from previous step
22
+ run : |
23
+ echo "${{ env.instana_stats_test_cases }}
24
+ echo $instana_stats_test_cases
You can’t perform that action at this time.
0 commit comments