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 e6338dd commit 6158090Copy full SHA for 6158090
action.yml
@@ -16,6 +16,10 @@ inputs:
16
fetch-depth:
17
description: 'Number of commits to fetch'
18
required: false
19
+ token:
20
+ description: 'GitHub token'
21
+ required: false
22
+ default: ${{ github.token }}
23
24
runs:
25
using: 'composite'
@@ -24,7 +28,6 @@ runs:
28
uses: actions/checkout@v4
29
with:
26
30
ref: ${{ inputs.ref }}
27
- fetch-depth: ${{ inputs.fetch-depth }}
31
token: ${{ inputs.token }}
32
sparse-checkout: |
33
.github
@@ -154,4 +157,5 @@ runs:
154
157
155
158
156
159
fetch-depth: ${{ inputs.fetch-depth }}
160
+ token: ${{ inputs.token }}
161
sparse-checkout: ${{ steps.union.outputs.sparse-paths }}
0 commit comments