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 b372a9e commit b5f6e9aCopy full SHA for b5f6e9a
.github/workflows/pr-deploy-preview.yml
@@ -2,9 +2,11 @@ name: Deploy preview for PR
2
3
on:
4
workflow_run:
5
- workflows: ["Build preview for PR"]
+ workflows: [Build preview for PR]
6
types:
7
- completed
8
+ branches:
9
+ - develop
10
11
permissions:
12
contents: read
@@ -26,6 +28,11 @@ jobs:
26
28
github.event.workflow_run.conclusion == 'success'
27
29
30
steps:
31
+ - name: Debug: List workflow details
32
+ run: |
33
+ echo "Workflow name: ${{ github.event.workflow_run.name }}"
34
+ echo "Pull request: ${{ github.event.workflow_run.pull_requests[0].number }}"
35
+
36
- name: Download artifacts
37
uses: actions/download-artifact@v3
38
with:
0 commit comments