We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74bc7e4 commit 0d06ba8Copy full SHA for 0d06ba8
1 file changed
.github/workflows/post-summary.yml
@@ -6,9 +6,11 @@
6
# - Add it to your repo as a secret named GH_FINEGRAINED_TOKEN (Settings → Secrets and variables → Actions → New repository secret)
7
# - Paste the token value* into the “Secret *” field.
8
9
+name: post-summary
10
+
11
on:
12
workflow_run:
- workflows: ["wstest"] # <-- match exactly the name in your wstest.yml 'name:' field
13
+ workflows: ["wstest"] # <-- match exactly the name in wstest.yml 'name:' field
14
types:
15
- completed
16
@@ -17,6 +19,9 @@ jobs:
17
19
runs-on: ubuntu-latest
18
20
if: ${{ github.event.workflow_run.event == 'pull_request' }}
21
steps:
22
+ - name: Install unzipper
23
+ run: npm install unzipper
24
25
- name: Download summary artifact
26
uses: actions/github-script@v7
27
with:
0 commit comments