-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathaction.yml
34 lines (34 loc) · 1.15 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
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.
include-labels:
description: >
A comma or newline separated list of pull request labels to include.
Allows any labels if unspecified.
exclude-labels:
description: 'A comma or newline separated list of pull request labels to exclude'
exclude-drafts:
description: 'Exclude draft pull requests'
default: false
rebase-options:
description: 'A comma or newline separated list of options to pass to the git rebase command. For example, `-Xtheirs`.'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'git-pull-request'
color: 'gray-dark'