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 d851d41 commit 2960dd4Copy full SHA for 2960dd4
action.yml
@@ -10,12 +10,20 @@ inputs:
10
pr_label_name:
11
description: 'Autorebase PR label'
12
required: true
13
+ repository:
14
+ description: 'A full repository name'
15
+ default: ${{ github.repository }}
16
+ required: false
17
+ ref:
18
+ description: 'A ref of the branch to rebase to'
19
+ default: ${{ github.ref }}
20
21
runs:
22
using: 'docker'
23
image: 'Dockerfile'
24
args:
25
- ${{ inputs.token }}
26
- ${{ inputs.worflow_id }}
27
- ${{ inputs.pr_label_name }}
- - ${{ github.ref }}
- - ${{ github.repository }}
28
+ - ${{ inputs.ref }}
29
+ - ${{ inputs.repository }}
0 commit comments