forked from peter-evans/rebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
38 lines (38 loc) · 1.22 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: 'Rebase Pulls'
description: 'Rebase pull requests in a repository'
inputs:
token:
description: 'GitHub auth token'
default: ${{ github.token }}
repository:
description: 'The target GitHub repository'
default: ${{ github.repository }}
head:
description: >
Filter pull requests by head user or head organization and branch name in the format user:ref-name or organization:ref-name.
For example: github:new-script-format or octocat:test-branch.
base:
description: >
Filter pull requests by base branch name.
Example: gh-pages.
command-to-run-before-rebase:
description: >
Run this command within the branch before rebasing against `base`
command-to-run-on-conflict:
description: >
Run this command when a conflict is found, and try to merge again.
default-branch:
description: >
The default branch for the repo, defaults to master
default: master
handle-dependabot:
description: >
The Dependabot PR's require a PR Comment to rebase them.
When this is `true` a comment will be added: `@dependabot rebase`
default: 'true'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'git-pull-request'
color: 'gray-dark'