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 bfb3f03 commit 43478feCopy full SHA for 43478fe
.github/workflows/dispatch-event.yml
@@ -35,10 +35,6 @@ jobs:
35
repository: pytorch
36
hours: 24
37
38
- - name: Print pull request info
39
- run: |
40
- echo ${{ fromJson(steps.list-pr.outputs.prs) }}
41
-
42
dispatch-pr:
43
name: 'Dispatch PR event - #${{ matrix.pr.number }}'
44
runs-on: ubuntu-latest
@@ -48,11 +44,11 @@ jobs:
48
fail-fast: false
49
45
max-parallel: 1
50
46
matrix:
51
- pr: ${{ fromJson(needs.list-pr.outputs.prs) }}
47
+ pr: ${{ needs.list-pr.outputs.prs }}
52
steps:
53
- name: Print pull request info
54
run: |
55
- echo ${{ matrix.pr }}
+ echo ${{ toJson(matrix.pr) }}
56
57
- name: Dispatch PR events to be out-of-tree test infra
58
uses: peter-evans/repository-dispatch@v3
0 commit comments