Update payment_notification.yml

This commit is contained in:
Bert Blommers 2023-06-08 17:07:57 +00:00 committed by GitHub
parent 5bfc575be8
commit 6fac7de646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,10 +12,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Leave comment - uses: actions/github-script@v5
uses: peter-evans/create-or-update-comment@v3
with: with:
issue-number: ${{ github.event.pull_request.number }} script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: | body: |
Hi @${{ github.event.pull_request.user.login }}, Hi @${{ github.event.pull_request.user.login }},
@ -28,3 +31,4 @@ jobs:
This website is still in beta, but everything should work. Feel free to open a bug or discussion if you run into any problems: This website is still in beta, but everything should work. Feel free to open a bug or discussion if you run into any problems:
https://github.com/getmoto/payments https://github.com/getmoto/payments
})