This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
Handle error gracefully when customBranch is enabled #30
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: Github Issues to Jira Issues | |
on: | |
issues: | |
types: [opened, closed, labeled, unlabeled] | |
issue_comment: | |
types: [created] | |
jobs: | |
sync: | |
name: Sync Items | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sync Github Issues to Jira | |
uses: jordansilva/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
jiraHost: ${{ secrets.CSENG_JIRA_HOST }} | |
jiraUsername: ${{ secrets.CSENG_JIRA_USERNAME }} | |
jiraPassword: ${{ secrets.CSENG_JIRA_PASSWORD }} | |
project: ${{ secrets.CSENG_JIRA_PROJECTKEY }} |