generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
30 lines (30 loc) · 892 Bytes
/
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
author: Savi
name: Pull from Base
description: >
A GitHub Action to automatically create pull requests
from a changing upstream base repository.
inputs:
github-token:
description: User token to be associated with this pull request.
required: true
source-repo:
description: Repo to pull from (e.g. `savi-lang/base-repo-library`)
required: true
source-branch:
description: Branch to pull from (e.g. `main`)
required: true
target-repo:
description: Repo to pull into (e.g. the current repository)
required: true
target-branch:
description: Branch to pull into (e.g. `main`)
required: true
pull-request-title:
description: Title of the new pull request to be created
required: false
pull-request-body:
description: Body of the new pull request to be created
required: false
runs:
using: 'node16'
main: 'dist/index.js'