Add ToffoliBox
#4
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
name: New issue | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
jira_task: | |
name: Create Jira issue | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Login | |
uses: atlassian/[email protected] | |
env: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
- name: Parse the priority label into a Jira priority | |
id: set_priority_var | |
env: | |
LABELS: ${{ join(github.event.issue.labels.*.name, ' ') }} | |
run: | | |
MY_RESULT="" | |
for label in $LABELS | |
do | |
case $label in | |
P-low) | |
MY_RESULT=Low | |
break;; | |
P-medium) | |
MY_RESULT=Medium | |
break;; | |
P-high) | |
MY_RESULT=High | |
break;; | |
P-critical) | |
MY_RESULT=Highest | |
break;; | |
esac | |
done | |
if [ ! -z $MY_RESULT ] | |
then | |
MY_RESULT=", \"priority\": { \"name\": \"$MY_RESULT\" }" | |
fi | |
echo "JIRA_PRIORITY_FIELD=$MY_RESULT" >> $GITHUB_OUTPUT | |
- name: Create Bug | |
uses: atlassian/[email protected] | |
if: ${{ contains(github.event.issue.labels.*.name, 'bug') }} | |
env: | |
JIRA_PRIORITY_FIELD: ${{ steps.set_priority_var.outputs.JIRA_PRIORITY_FIELD }} | |
with: | |
project: TKET | |
issuetype: Bug | |
summary: « [tket-json-rs] ${{ github.event.issue.title }}» | |
description: ${{ github.event.issue.html_url }} | |
fields: '{ "labels": ["tket-json-rs"] ${{ env.JIRA_PRIORITY_FIELD }} }' | |
- name: Create Task | |
uses: atlassian/[email protected] | |
if: ${{ ! contains(github.event.issue.labels.*.name, 'bug') }} | |
env: | |
JIRA_PRIORITY_FIELD: ${{ steps.set_priority_var.outputs.JIRA_PRIORITY_FIELD }} | |
with: | |
project: TKET | |
issuetype: Task | |
summary: « [tket-json-rs] ${{ github.event.issue.title }}» | |
description: ${{ github.event.issue.html_url }} | |
fields: '{ "labels": ["tket-json-rs"] ${{ env.JIRA_PRIORITY_FIELD }} }' |