-
Notifications
You must be signed in to change notification settings - Fork 39
61 lines (56 loc) · 2.04 KB
/
jira.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
name: Create issue on Jira
on:
issues:
types: opened
jobs:
jira:
runs-on: ubuntu-latest
steps:
- name: Jira login
id: login
uses: atlassian/gajira-login@v3.0.1
env:
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
- name: Create Jira issue
id: create_jira_issue
uses: atlassian/gajira-create@v3
with:
project: DOCS
issuetype: Bug
summary: |
[GH#${{ github.event.issue.number }}] ${{ github.event.issue.title }}
description: |
${{ github.event.issue.body }}
----
{panel}
[Github permalink|${{ github.event.issue.html_url }}]
{panel}
fields: '{"customfield_10009": "DOCS-162", "labels": ["Quality"]}'
- name: Update title of GitHub issue
uses: actions/github-script@v7
env:
JIRA_ISSUE_NUMBER: ${{ steps.create_jira_issue.outputs.issue }}
GITHUB_ORIGINAL_TITLE: ${{ github.event.issue.title }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const newTitle = `[${process.env.JIRA_ISSUE_NUMBER}] ${process.env.GITHUB_ORIGINAL_TITLE}`
github.rest.issues.update({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
title: newTitle
})
- name: Add comment to GitHub issue
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Internal Jira issue: [${{ steps.create_jira_issue.outputs.issue }}](${{ secrets.JIRA_BASE_URL }}/browse/${{ steps.create_jira_issue.outputs.issue }})'
})