This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
show what projects will be deleted when using --dry-run #31
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 }} |