-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PR template and autolink to JIRA task action (#60)
* add PR template and auto link to JIRA tasks action * update auto link to JIRA tasks action * update auto link to JIRA tasks action * update PR template
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Author advertizement! | ||
|
||
>[!CAUTION] | ||
Don't forget to check that the base branch for the PR is '''develop''' and not the default '''main''' branch! | ||
|
||
## Content | ||
|
||
You have no Jira task for this PR? Describe your changes here... | ||
|
||
... | ||
|
||
## Technical details | ||
|
||
You feel the need to provide technical explanations? You can do it here... | ||
|
||
... |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# https://github.com/marketplace/actions/jira-description | ||
# Requires a JIRA REST api token: https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/ | ||
# https://id.atlassian.com/manage-profile/security/api-tokens to generate one with you username | ||
# Configure the JIRA_TOKEN secret as a repository action secret as described below: | ||
# follow the pattern: <username>:<api token from jira> | ||
name: jira-description-action | ||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
jobs: | ||
add-jira-description: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: cakeinpanic/[email protected] | ||
name: jira-description-action | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
jira-token: ${{ secrets.JIRA_TOKEN }} | ||
jira-base-url: https://hackolade.atlassian.net | ||
skip-branches: '^(develop|main|master)$' | ||
jira-project-key: 'HCK' | ||
use: 'both' | ||
fail-when-jira-issue-not-found: false |