-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding GH Action Scripts to allow issue integration with Zendesk
- Loading branch information
1 parent
b7d88e1
commit 9891d10
Showing
5 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
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 }} |
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
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 }} |
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
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 }} |
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
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 |
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
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 |