-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
1 changed file
with
5 additions
and
59 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,13 @@ | ||
name: Jira Issue Label Added | ||
|
||
# If this needs to be re-used outside of platform-internal, | ||
# then consider a workflow call. | ||
# | ||
# For comparison, see https://github.com/pact-foundation/pact_broker/blob/master/.github/workflows/smartbear-issue-label-added.yml | ||
# | ||
|
||
# on: | ||
# workflow_call: | ||
# inputs: | ||
# team-name: | ||
# type: string | ||
|
||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
create-issue-in-stoplight-jira: | ||
runs-on: ubuntu-latest | ||
if: github.event.label.name == 'jira' | ||
steps: | ||
- name: Login | ||
uses: atlassian/gajira-login@v3 | ||
with: | ||
team-name: ${{ inputs.team-name }} | ||
env: | ||
JIRA_BASE_URL: ${{ secrets.SMARTBEAR_JIRA_BASE_URL }} | ||
JIRA_USER_EMAIL: ${{ secrets.SMARTBEAR_JIRA_USER_EMAIL }} | ||
JIRA_API_TOKEN: ${{ secrets.SMARTBEAR_JIRA_API_TOKEN }} | ||
|
||
- name: Search | ||
id: search | ||
uses: tomhjp/[email protected] | ||
with: | ||
jql: 'summary ~ "${{ github.event.repository.name }}#${{ github.event.issue.number }}:" AND project=${{ vars.SMARTBEAR_JIRA_PROJECT }}' | ||
|
||
- name: Log | ||
run: echo "Found issue ${{ steps.search.outputs.issue }}" | ||
|
||
- name: Create | ||
id: create | ||
uses: atlassian/gajira-create@v3 | ||
if: steps.search.outputs.issue == '' | ||
with: | ||
project: ${{ vars.SMARTBEAR_JIRA_PROJECT }} | ||
issuetype: Task | ||
summary: '${{ github.event.repository.name }}#${{ github.event.issue.number }}: ${{ github.event.issue.title }}' | ||
description: | | ||
*Issue Link:* ${{ github.event.issue.html_url }} | ||
${{ github.event.issue.body }} | ||
- name: Add Comment | ||
if: steps.search.outputs.issue == '' && steps.create.outputs.issue != '' | ||
uses: actions/github-script@v6 | ||
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: "This ticket has been labeled <i>jira</i>. A tracking ticket in Stoplight's Jira (<a href='https://smartbear.atlassian.net/browse/${{steps.create.outputs.issue}}'><code>${{steps.create.outputs.issue}}</code></a>) has been created." | ||
}) | ||
call-workflow: | ||
uses: stoplightio/.github/.github/workflows/jira-issue-label-added.yaml@master | ||
with: | ||
team-name: ${{ contains(github.event.pull_request.labels.*.name, 'team/bear-claws') && 'Bear Claws' || contains(github.event.pull_request.labels.*.name, 'team/honey-hackers') && 'Honey Hackers' || '' }} | ||
secrets: inherit |