Skip to content

Commit

Permalink
[skip ci] ci: add jira automation to create jira tasks from GitHub is…
Browse files Browse the repository at this point in the history
…sues (#93)
  • Loading branch information
DnPlas committed Mar 3, 2023
1 parent 5dac70e commit 593d08a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/issues_to_jira.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# this workflow requires to provide JIRA webhook URL via JIRA_URL GitHub Secret
# read more: https://support.atlassian.com/cloud-automation/docs/jira-automation-triggers/#Automationtriggers-Incomingwebhook
# original code source: https://github.com/beliaev-maksim/github-to-jira-automation

name: Issues to JIRA

on:
issues:
# available via github.event.action
types: [opened, reopened, closed]

jobs:
update:
name: Update Issue
uses: beliaev-maksim/github-to-jira-automation/.github/workflows/issues_to_jira.yaml@master
secrets:
JIRA_URL: ${{ secrets.JIRA_URL }}

0 comments on commit 593d08a

Please sign in to comment.