-
-
Save KyMidd/ba191bfe0ab0aaa31d96508dbcc0c216 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| runs: | |
| using: "composite" | |
| steps: | |
| - id: trigger_jenkins_job_using_api | |
| run: | | |
| #Parameters | |
| jira_username="${{ inputs.jira-username }}" | |
| jira_api_token="${{ inputs.jira-api-token }}" | |
| BASE_BRANCH="${{ inputs.BASE_BRANCH }}" | |
| # Some commits don't have valid Jira ticket leads, like those built by whitesource or github | |
| # This list permits some commits to show as valid and not poll against Jira | |
| commit_static_permit_list="(^Merge pull request \#)|(^Merge branch)|(^Revert \")" | |
| # Initialize invalidTicket as false, will be set to true by any non-exist tickets | |
| invalidTicket=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment