generated from redhat-plumbers-in-action/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update tracker status and add link to PR
- Loading branch information
Showing
54 changed files
with
106,449 additions
and
3,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,3 +109,5 @@ lib/**/* | |
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,44 @@ | ||
--- | ||
|
||
name: 'Your name here' | ||
name: Tracker Validator | ||
description: Bugzilla and Jira validation for Pull Requests | ||
|
||
description: 'Provide a description here' | ||
|
||
author: 'Your name or organization here' | ||
branding: | ||
icon: bookmark | ||
color: blue | ||
|
||
inputs: | ||
milliseconds: # change this | ||
pr-metadata: | ||
required: true | ||
description: 'input description here' | ||
default: 'default value if applicable' | ||
description: Pull Request metadata | ||
|
||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
tracker: | ||
description: tracker ID | ||
tracker-type: | ||
description: tracker type, supported values are 'bugzilla' and 'jira' | ||
|
||
product: | ||
description: Product name | ||
component: | ||
required: true | ||
description: Component name | ||
|
||
bugzilla-instance: | ||
description: Bugzilla instance URL | ||
default: https://bugzilla.redhat.com | ||
bugzilla-api-token: | ||
description: Bugzilla API TOKEN | ||
|
||
... | ||
jira-instance: | ||
description: Jira instance URL | ||
default: https://issues.redhat.com | ||
jira-api-token: | ||
description: Jira API TOKEN | ||
|
||
token: | ||
required: true | ||
description: GitHub TOKEN or PAT | ||
|
||
runs: | ||
using: node16 | ||
main: dist/index.js |
Oops, something went wrong.