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 bff3377 commit 70da097Copy full SHA for 70da097
.github/workflows/analysis.yml
@@ -51,8 +51,10 @@ jobs:
51
# account credentials.
52
if: github.repository == 'AcademySoftwareFoundation/OpenImageIO'
53
uses: ./.github/workflows/build-steps.yml
54
- # Must let the called steps workflow inherit our secrets
55
- secrets: inherit
+ # Must let the called steps workflow inherit necessary secrets
+ secrets:
56
+ - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57
+ - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
58
with:
59
nametag: ${{ matrix.nametag || 'unnamed!' }}
60
runner: ${{ matrix.runner || 'ubuntu-latest' }}
.github/workflows/build-steps.yml
@@ -64,6 +64,9 @@ on:
64
type: string
65
nametag:
66
67
68
+ - GITHUB_TOKEN
69
+ - SONAR_TOKEN
70
71
permissions: read-all
72
0 commit comments