-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
29 lines (29 loc) · 1.29 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
name: 'Pull request branch updater'
description: 'GitHub Action to update the pull request branch with the base branch'
branding:
icon: 'git-pull-request'
color: 'blue'
inputs:
token:
description: 'token to be used for making authenticated calls to the GitHub API'
required: false
default: ${{ github.token }}
repo:
description: 'the repo where you want to update the pull requests, defaults to the current repository executing the runner'
required: false
default: ${{ github.repository }}
create-comments:
description: 'choose whether to create comments on the pull request with details about the update, defaults to true'
required: false
default: 'true'
base:
description: 'the base branch(es) to filter for when doing the update, defaults to ** which will update all branches regardless of the base branch, you can specify multiple branches separated by commas, supports regular expressions'
required: false
default: '**'
head:
description: 'the head branch(es) to filter for when doing the update, defaults to ** which will update all branches regardless of the head branch, you can specify multiple branches separated by commas, supports regular expressions'
required: false
default: '**'
runs:
using: 'node20'
main: 'dist/index.js'