chore: Update ownership #85
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
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! ' | |
}) |