Skip to content

Commit

Permalink
Merge pull request #158 from Charles-Berghausen/main
Browse files Browse the repository at this point in the history
Set up an automated response for new live issues reported
  • Loading branch information
jonathajones authored Oct 19, 2023
2 parents ba0ecb0 + b41eabb commit 4b41357
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/auto-reply-to-raised-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# from https://docs.github.com/en/actions/managing-issues-and-pull-requests/commenting-on-an-issue-when-a-label-is-added

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.

name: Auto response to raised live issues
on:
issues:
types: [opened]

jobs:
add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add automated comment
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thank you for reaching out to the Native Checkout SDK team. This integration path is now inactive for new merchants.
If you are an existing merchant, please contact us [here](https://www.paypal.com/us/business/contact-sales) for further assistance.
New merchants can integrate the Native Checkout experience via the Braintree iOS SDK or PayPal iOS SDK.
For more information please see their respective developer documentation linked below.
* [Braintree iOS SDK](https://developer.paypal.com/braintree/docs/guides/paypal/native-checkout/ios/v5)
* [PayPal iOS SDK](https://developer.paypal.com/beta/advanced-mobile/)

0 comments on commit 4b41357

Please sign in to comment.