Skip to content

Commit 35a7af8

Browse files
author
Manjunath Davanam
committed
Issue 000 feat: Github jira integration.
1 parent 2a11121 commit 35a7af8

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.github/pull_request_template.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
2+
3+
### Type of change
4+
5+
Please choose appropriate options.
6+
7+
- [ ] Bug fix (non-breaking change which fixes an issue)
8+
- [ ] New feature (non-breaking change which adds functionality)
9+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
10+
- [ ] This change requires a documentation update
11+
12+
### How Has This Been Tested?
13+
14+
Please describe the tests that you ran to verify your changes in the below checkboxes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
15+
16+
- [ ] Ran Test A
17+
- [ ] Ran Test B
18+
19+
**Test Configuration**:
20+
* Software versions:
21+
* Hardware versions:
22+
23+
### Checklist:
24+
25+
- [ ] My code follows the style guidelines of this project
26+
- [ ] I have performed a self-review of my own code
27+
- [ ] I have commented my code, particularly in hard-to-understand areas
28+
- [ ] I have made corresponding changes to the documentation
29+
- [ ] My changes generate no new warnings
30+
- [ ] I have added tests that prove my fix is effective or that my feature works
31+
- [ ] New and existing unit tests pass locally with my changes
32+
- [ ] Any dependent changes have been merged and published in downstream modules
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: jira-description-action
2+
on:
3+
pull_request_target:
4+
types: [opened, labeled]
5+
jobs:
6+
add-jira-description:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: project-sunbird/[email protected]
10+
name: jira-description-action
11+
with:
12+
github-token: ${{ secrets.GITHUB_TOKEN }}
13+
jira-token: ${{ secrets.JIRA_TOKEN }}
14+
jira-base-url: ${{ secrets.JIRA_BASE_URL }}
15+
fail-when-jira-issue-not-found: ${{ secrets.FAIL_WHEN_JIRA_ISSUE_NOT_FOUND }}
16+
use: both

0 commit comments

Comments
 (0)