-
Notifications
You must be signed in to change notification settings - Fork 2
98 lines (88 loc) · 3.08 KB
/
create-jira-issue.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Create Jira Issue and Sync with GitHub
on:
issues:
types: [opened]
jobs:
create_jira_issue:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Create Jira issue
id: create_jira
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_EMAIL: ${{ secrets.JIRA_EMAIL }}
JIRA_PROJECT_KEY: ${{ secrets.JIRA_PROJECT_KEY }}
run: |
ISSUE_TITLE="${{ github.event.issue.title }}"
ISSUE_BODY="${{ github.event.issue.body }}"
RESPONSE=$(curl -D- \
-u "$JIRA_EMAIL:$JIRA_API_TOKEN" \
-X POST \
--data '{
"fields": {
"project": {
"key": "'"$JIRA_PROJECT_KEY"'"
},
"summary": "'"$ISSUE_TITLE"'",
"description": "'"$ISSUE_BODY"'",
"issuetype": {
"name": "Task"
}
}
}' \
-H "Content-Type: application/json" \
"$JIRA_BASE_URL/rest/api/2/issue/")
echo "$RESPONSE"
JIRA_ISSUE_KEY=$(echo "$RESPONSE" | grep -oP '(?<=issue\/key\/)\w+-\d+')
echo "JIRA_ISSUE_KEY=$JIRA_ISSUE_KEY" >> $GITHUB_ENV
- name: Create branch for the issue
run: |
ISSUE_NUMBER=${{ github.event.issue.number }}
ISSUE_TITLE=${{ github.event.issue.title }}
BRANCH_NAME="feat/issue-${ISSUE_NUMBER}-${JIRA_ISSUE_KEY}"
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git checkout -b "$BRANCH_NAME"
git push origin "$BRANCH_NAME"
- name: Add Jira issue key to commit message
env:
JIRA_ISSUE_KEY: ${{ env.JIRA_ISSUE_KEY }}
run: |
echo "JIRA_ISSUE_KEY=${JIRA_ISSUE_KEY}" >> $GITHUB_ENV
on:
push:
branches:
- 'feat/*'
jobs:
update_jira:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Update Jira issue with commit info
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_EMAIL: ${{ secrets.JIRA_EMAIL }}
JIRA_ISSUE_KEY: ${{ env.JIRA_ISSUE_KEY }}
run: |
COMMITS=$(jq -r '.commits[] | .message' $GITHUB_EVENT_PATH)
curl -D- \
-u "$JIRA_EMAIL:$JIRA_API_TOKEN" \
-X PUT \
--data '{
"update": {
"comment": [
{
"add": {
"body": "'"Commits related to this issue:\n$COMMITS"'"
}
}
]
}
}' \
-H "Content-Type: application/json" \
"$JIRA_BASE_URL/rest/api/2/issue/$JIRA_ISSUE_KEY"