Footer inconsistent social-links #111
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 New Issues | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on Issue | |
if: github.event.issue.user.login != github.event.repository.owner.login | |
uses: actions/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const issueComment = ` | |
π Thanks for raising an issue π | |
The maintainer will be on the case shortly to review your issue. If everything checks out, they'll assign the issue to you. πβ | |
Your support means the world to us! π Please consider giving our repository a star β to show your appreciation π | |
Feel free to reach out if you have any questions or need further assistance. π | |
`; | |
github.issues.createComment({ issue_number: github.context.issue.number, owner: github.context.repo.owner, repo: github.context.repo.repo, body: issueComment }); |