-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 939 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 939 Bytes
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
name: "Sync Branch"
description: "GitHub Action that creates a pull request to sync a updated branch back to one or more other branches using an intermediate branch."
branding:
icon: wind
color: gray-dark
inputs:
GITHUB_TOKEN:
description: "User token to be associated with this pull request."
required: true
FROM_BRANCH:
description: "Branch from make pull-request from"
required: true
TO_BRANCH:
description: "Branch to make the pull-request against"
required: true
REVIEWERS:
description: "One or more user reviewers that will be assigned to the PR. Format: comma separated list"
required: false
default: ''
outputs:
PULL_REQUEST_URL:
description: "URL for either the generated pull request or the currently open one"
PULL_REQUEST_NUMBER:
description: "Pull request number from generated pull request or the currently open one"
runs:
using: "node20"
main: "dist/index.js"