Skip to content

Commit

Permalink
update not send jira
Browse files Browse the repository at this point in the history
  • Loading branch information
hooni0918 authored Jun 29, 2024
1 parent fba3fae commit 6ecea6a
Showing 1 changed file with 16 additions and 66 deletions.
82 changes: 16 additions & 66 deletions .github/workflows/create-jira-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,23 @@ jobs:
JIRA_PROJECT_KEY: ${{ secrets.JIRA_PROJECT_KEY }}
run: |
ISSUE_TITLE="${{ github.event.issue.title }}"
ISSUE_BODY="${{ github.event.issue.body }}"
JSON_DATA=$(cat <<EOF
{
"fields": {
"project": {
"key": "${JIRA_PROJECT_KEY}"
},
"summary": "${ISSUE_TITLE}",
"description": "${ISSUE_BODY}",
"issuetype": {
"name": "Task"
JSON_DATA=$(jq -n \
--arg key "$JIRA_PROJECT_KEY" \
--arg summary "$ISSUE_TITLE" \
'{
"fields": {
"project": {
"key": $key
},
"summary": $summary,
"description": "No description provided.",
"issuetype": {
"name": "Task"
}
}
}
}
EOF
)
}')
echo "JSON Data: $JSON_DATA"
RESPONSE=$(curl -D- \
-u "$JIRA_EMAIL:$JIRA_API_TOKEN" \
Expand All @@ -56,54 +57,3 @@ jobs:
echo "Jira API response: $RESPONSE"
JIRA_ISSUE_KEY=$(echo "$RESPONSE" | grep -oP '(?<=key\":\")\w+-\d+')
echo "JIRA_ISSUE_KEY=$JIRA_ISSUE_KEY" >> $GITHUB_ENV
- name: Create branch for the issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export LANG=en_US.UTF-8
ISSUE_NUMBER=${{ github.event.issue.number }}
ISSUE_TITLE="${{ github.event.issue.title }}"
PREFIX=$(echo "$ISSUE_TITLE" | grep -oE '^(feat|fix|docs|setting|add|refactor|chore)')
if [ -z "$PREFIX" ]; then PREFIX="feature"; fi
TITLE_NO_PREFIX=$(echo "$ISSUE_TITLE" | sed -e "s/$PREFIX : //")
CLEAN_TITLE=$(echo "$TITLE_NO_PREFIX" | iconv -c -f utf-8 -t ascii//TRANSLIT | sed 's/[^a-zA-Z0-9]//g')
BRANCH_NAME="${PREFIX}/#${ISSUE_NUMBER}-${CLEAN_TITLE}"
echo "Creating branch with name: $BRANCH_NAME"
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 "https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.repository }}" "$BRANCH_NAME"
update_jira:
if: github.event_name == 'push'
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_BASEURL: ${{ secrets.JIRA_BASEURL }}
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_BASEURL/rest/api/2/issue/$JIRA_ISSUE_KEY"

0 comments on commit 6ecea6a

Please sign in to comment.