-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
792fc47
commit e52b233
Showing
1 changed file
with
46 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,46 @@ | ||
# Workflow to ensure whenever a Github PR is submitted, | ||
# a JIRA ticket gets created automatically. | ||
name: Manual Workflow | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on pull request events but only for the master branch | ||
pull_request_target: | ||
types: [opened, reopened] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-transition-issue: | ||
name: Convert Github Issue to Jira Issue | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
|
||
- name: Login | ||
uses: atlassian/gajira-login@master | ||
env: | ||
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | ||
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | ||
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | ||
|
||
- name: Create NEW JIRA ticket | ||
id: create | ||
uses: atlassian/[email protected] | ||
with: | ||
project: CONUPDATE | ||
issuetype: Task | ||
summary: | | ||
Github PR [Assign the ND component] | Repo: ${{ github.repository }} | PR# ${{github.event.number}} | ||
description: | | ||
Repo link: https://github.com/${{ github.repository }} | ||
PR no. ${{ github.event.pull_request.number }} | ||
PR title: ${{ github.event.pull_request.title }} | ||
PR description: ${{ github.event.pull_request.description }} | ||
In addition, please resolve other issues, if any. | ||
fields: '{"components": [{"name":"Github PR"}], "customfield_16449":"https://classroom.udacity.com/", "customfield_16450":"Resolve the PR", "priority":{"id": "4"}}' | ||
|
||
- name: Log created issue | ||
run: echo "Issue ${{ steps.create.outputs.issue }} was created" |