Skip to content

Commit

Permalink
chore: add jira issue label workflow (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylachun authored Apr 5, 2024
1 parent 129d05c commit eccbba6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/jira-issue-label-added.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Jira Issue Label Added

on:
issues:
types:
- labeled

jobs:
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' || contains(github.event.pull_request.labels.*.name, 'team/maintenance') && 'Maintenance' || '' }}
secrets: inherit

0 comments on commit eccbba6

Please sign in to comment.