Skip to content

Commit

Permalink
adding GH Action Scripts to allow issue integration with Zendesk
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkiely1 committed Jan 19, 2023
1 parent b7d88e1 commit 9891d10
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/issue_closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on:
issues:
types: [closed]
jobs:
issue_created:
uses: bugsnag/support-zendesk-integration/.github/workflows/issue_closed.yml@main
secrets:
ZENDESK_BASIC_AUTH: ${{ secrets.ZENDESK_BASIC_AUTH }}
8 changes: 8 additions & 0 deletions .github/workflows/issue_commented.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on:
issue_comment:
types: [created]
jobs:
issue_created:
uses: bugsnag/support-zendesk-integration/.github/workflows/issue_commented.yml@main
secrets:
ZENDESK_BASIC_AUTH: ${{ secrets.ZENDESK_BASIC_AUTH }}
8 changes: 8 additions & 0 deletions .github/workflows/issue_created.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on:
issues:
types: [opened]
jobs:
issue_created:
uses: bugsnag/support-zendesk-integration/.github/workflows/issue_created.yml@main
secrets:
ZENDESK_BASIC_AUTH: ${{ secrets.ZENDESK_BASIC_AUTH }}
7 changes: 7 additions & 0 deletions .github/workflows/zendesk_comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
on:
repository_dispatch:
types:
- zendesk
jobs:
zendesk_comment:
uses: bugsnag/support-zendesk-integration/.github/workflows/zendesk_comment.yml@main
7 changes: 7 additions & 0 deletions .github/workflows/zendesk_solve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
on:
repository_dispatch:
types:
- zendesk-solving-issue
jobs:
zendesk_comment:
uses: bugsnag/support-zendesk-integration/.github/workflows/zendesk_solve.yml@main

0 comments on commit 9891d10

Please sign in to comment.