Skip to content

chore: Merge PR#79

chore: Merge PR#79 #74

Workflow file for this run

name: Comment on PR
on:
pull_request_target:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Leave a comment
uses: actions/github-script@v4
with:
github-token: ${{secrets.PERSONAL_ACCESS_TOKEN}}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thank you for submitting your pull request, last step is to send the link of your PR to [Julian](https://t.me/JulianApeSwap), that way we can review as quickly as possible! '
})