mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-06-30 14:43:47 +00:00
feat: override backporting pr fields (#38)
* feat: override local git user config * feat(issue-32): override reviewers and assignees
This commit is contained in:
parent
22bec0c537
commit
a32e8cd34c
21 changed files with 671 additions and 107 deletions
18
action.yml
18
action.yml
|
@ -9,6 +9,14 @@ inputs:
|
|||
description: "GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)."
|
||||
default: ${{ github.token }}
|
||||
required: false
|
||||
git-user:
|
||||
description: "Local git user name."
|
||||
default: "GitHub"
|
||||
required: false
|
||||
git-email:
|
||||
description: "Local git user email."
|
||||
default: "noreply@github.com"
|
||||
required: false
|
||||
pull-request:
|
||||
description: "URL of the pull request to backport, e.g., https://github.com/lampajr/backporting/pull/1."
|
||||
required: true
|
||||
|
@ -27,6 +35,16 @@ inputs:
|
|||
bp-branch-name:
|
||||
description: "Backporting PR branch name. Default is auto-generated from commit."
|
||||
required: false
|
||||
reviewers:
|
||||
description: "Comma separated list of reviewers for the backporting pull request."
|
||||
required: false
|
||||
assignees:
|
||||
description: "Comma separated list of reviewers for the backporting pull request."
|
||||
required: false
|
||||
inherith-reviewers:
|
||||
description: "If enabled and reviewers option is empty then inherit them from original pull request."
|
||||
required: false
|
||||
default: "true"
|
||||
|
||||
runs:
|
||||
using: node16
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue