-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 775 Bytes
/
Copy pathaction.yml
File metadata and controls
24 lines (24 loc) · 775 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
name: "Create Sync PR"
author: Rahul Singh Mawari <rsmawari198@gmail.com>
description: "Github Action to create PR for syncing multiple branches"
branding:
icon: git-pull-request
color: green
inputs:
GITHUB_TOKEN:
description: "User token to be associated with this pull request."
required: true
SOURCE_BRANCH:
description: "Branch from make pull-request from"
required: true
TARGET_BRANCH:
description: "Branch to make the pull-request against"
required: true
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: "node12"
main: "dist/index.js"