-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
36 lines (35 loc) · 1.07 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
name: 'Upstream to PR'
description: 'Fetch upstream branch and open PR (if any changes)'
author: 'Filipe Pina'
inputs:
token:
description: 'github token used to create the pull request'
required: true
upstream-repository:
description: 'git/http URL for the upstream project'
required: true
upstream-branch:
description: 'upstream branch of the upstream project to monitor'
required: true
default: main
upstream-tag:
description: 'upstream tag expression of the upstream project to monitor - using this ignores upstream-branch'
required: false
keep-old:
description: 'delete older PRs (and branches) when a more recent PR is open'
default: 'false'
reviewers:
description: 'comma-separated list of reviewers for the PR'
required: false
team_reviewers:
description: 'comma-separated list of team reviewers for the PR'
required: false
outputs:
pull-request-url:
description: 'URL of the pull request created (if any)'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'refresh-ccw'
color: 'blue'