We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e56c21 commit 9cee49cCopy full SHA for 9cee49c
.github/actions/setup-dependencies/action.yaml
@@ -66,7 +66,7 @@ runs:
66
shell: bash
67
if: ${{ steps.cache-pdk.outputs.cache-hit != 'true' && inputs.cache-only != 'true' }}
68
env:
69
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ inputs.github-token }}
70
run: |
71
mkdir -p ${{ env.PDK_ROOT }}
72
make pdk-with-volare
.github/workflows/test.yaml
@@ -9,6 +9,8 @@ jobs:
9
steps:
10
- uses: actions/checkout@v4
11
- uses: ./.github/actions/setup-dependencies
12
+ with:
13
+ github-token: ${{ secrets.GITHUB_TOKEN }}
14
- name: Setup Dependencies
15
16
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments