@@ -2,18 +2,13 @@ name: Analyze Bundle (Comment)
2
2
3
3
on :
4
4
workflow_run :
5
- workflows : [' Analyze Bundle' ]
5
+ workflows : [" Analyze Bundle" ]
6
6
types :
7
7
- completed
8
8
9
- permissions : {}
10
-
11
9
jobs :
12
10
comment :
13
11
runs-on : ubuntu-latest
14
- if : >
15
- ${{ github.event.workflow_run.event == 'pull_request' &&
16
- github.event.workflow_run.conclusion == 'success' }}
17
12
steps :
18
13
- name : Download Event Type
19
14
uses : dawidd6/action-download-artifact@v3
@@ -30,15 +25,17 @@ jobs:
30
25
echo "event-type=$event_type" >> $GITHUB_OUTPUT
31
26
32
27
- name : Download base branch bundle stats
33
- uses : dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
28
+ if : github.event.workflow_run.conclusion == 'success' && steps.get-type.outputs.event-type == 'pull_request'
29
+ uses : dawidd6/action-download-artifact@v3
34
30
with :
35
31
workflow : analyze.yml
36
32
run_id : ${{ github.event.workflow_run.id }}
37
33
name : analysis_comment.txt
38
34
path : analysis_comment.txt
39
35
40
36
- name : Download PR number
41
- uses : dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
37
+ if : github.event.workflow_run.conclusion == 'success' && steps.get-type.outputs.event-type == 'pull_request'
38
+ uses : dawidd6/action-download-artifact@v3
42
39
with :
43
40
workflow : analyze.yml
44
41
run_id : ${{ github.event.workflow_run.id }}
64
61
echo "pr-number=$pr_number" >> $GITHUB_OUTPUT
65
62
66
63
- name : Comment
67
- uses : marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728
64
+ uses : marocchino/sticky-pull-request-comment@v2
68
65
with :
69
66
header : next-bundle-analysis
70
67
number : ${{ steps.get-comment-body.outputs.pr-number }}
0 commit comments