We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f80187 commit 84d21ccCopy full SHA for 84d21cc
prepare-custom-p2/action.yml
@@ -5,6 +5,9 @@ inputs:
5
repo:
6
description: "The repository to check out the custom p2 from"
7
required: true
8
+ token:
9
+ default: ${{ github.token }}
10
+ description: "A GitHub token to use for cloning repositories"
11
12
outputs:
13
p2-found:
@@ -36,7 +39,7 @@ runs:
36
39
uses: dbeaver/github-actions/checkout-with-deps@dbeaver/dbeaver-devops#2023-custom-p2 # CHANGEME after PR approval
37
40
if: ${{ steps.find-p2.outputs.p2-found == 'true' }}
38
41
with:
- token: ${{ secrets.GITHUB_TOKEN }}
42
+ token: ${{ inputs.token }}
43
owner: ${{ github.repository_owner }}
44
repo: ${{ inputs.repo }}
45
ref: ${{ github.head_ref }}
0 commit comments