-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
40 lines (30 loc) · 1.14 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
39
40
name: "PR integration action"
description: "Automatically integrates approved Pull Requests into specified branch"
branding:
icon: "git-pull-request"
color: "blue"
inputs:
repository:
description: Repository name with owner. For example, my-org/repo-test
default: ${{ github.repository }}
github_token:
description: Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`
default: ${{ github.token }}
token_with_workflow_scope:
description: |
Optional personal access github token with workflow scope. Allows to merge PRs containing changes in github workflow files
integration_branch:
description: Name of the branch where the integrated PRs will be merged. The branch will be reset to current master before integration
default: stage
approve_label:
description: Label to check PRs to be integrated
default: Approved
integrated_label:
description: Label used to mark Integrated PRs
default: Integrated
outputs:
haveUpdates:
description: Indicates whether any new or updated PRs were integrated. Values 'yes', 'no'
runs:
using: 'node16'
main: 'entrypoint.js'