Skip to content

Commit

Permalink
chore(ci): automaticaly create jira issues on gh issue (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#3564

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Pierre Millot <[email protected]>
  • Loading branch information
algolia-bot and millotp committed Aug 20, 2024
1 parent ebf4927 commit 2dc9125
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: 'Issue sync with Jira'
on:
issues:
types: [opened]

permissions:
issues: write
contents: read

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Create ticket
uses: actions/github-script@v7
with:
script: |
const action = context.payload.action;
if (action !== 'opened') {
return;
}
const title = context.payload.issue.title;
const body = context.payload.issue.body;
const res = await fetch('https://algolia.atlassian.net/rest/api/3/issue', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Basic ${{ secrets.JIRA_TOKEN }}`
},
body: JSON.stringify({
fields: {
description: {
content: [
{
content: [
{
text: `Issue created by ${context.actor} at ${context.payload.issue.html_url} \n\n${body}`,
type: 'text'
}
],
type: 'paragraph'
}
],
type: 'doc',
version: 1
},
issuetype: {
id: '10001'
},
parent: {
key: 'DI-2737'
},
project: {
id: '10118'
},
summary: `[GH-ISSUE] ${title}`
},
update: {}
})
});
if (!res.ok) {
throw new Error(`Failed to create ticket: ${res.statusText} (${res.status}) - ${await res.text()}`);
}
const data = await res.json();
console.log(`Created ticket: ${data.key}`);

0 comments on commit 2dc9125

Please sign in to comment.