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 3144078 commit 5d66001Copy full SHA for 5d66001
.github/workflows/continuous-delivery.yml
@@ -83,8 +83,7 @@ jobs:
83
- variables
84
- build
85
uses: ./.github/workflows/test-e2e.yml
86
- secrets:
87
- GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }}
+ secrets: inherit
88
with:
89
new-release-detected: ${{ needs.build.outputs.new-release-detected }}
90
distribution-artifacts-name: ${{ needs.variables.outputs.distribution-artifacts-name }}
.github/workflows/test-e2e.yml
@@ -24,9 +24,6 @@ on:
24
run-test-command:
25
required: true
26
type: string
27
28
- GH_API_TOKEN:
29
- required: true
30
31
32
jobs:
@@ -73,4 +70,6 @@ jobs:
73
70
74
71
- name: Test | Run pytest
75
72
run: ${{ inputs.run-test-command }}
+ env:
+ GH_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76
0 commit comments