π [BUG] - NO contact us page #159
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: Add Comment to Newly Open Issue | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add-comment: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Add Comment | |
uses: actions/github-script@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const { issue } = context.payload; | |
const author = issue.user.login; | |
const issueNumber = issue.number; | |
const comment = `Hello @${author}! \n Thank you for raising this issue. \n\nPlease make sure to follow our [Contributing Guidelines. πͺπ»](https://github.com/amupedia2021/Project-Amupedia/blob/master/CONTRIBUTING.md) \nDon't forget to β our [Project-Amupedia. π](https://github.com/amupedia2021/Project-Amupedia)\n\nOur review team will carefully assess the issue and reach out to you soon! π \n We appreciate your patience! π`; | |
const { owner, repo } = context.repo; | |
await github.issues.createComment({ | |
owner: owner, | |
repo: repo, | |
issue_number: issueNumber, | |
body: comment | |
}); | |
console.log(`Comment added to the Issue #${issueNumber}.`); |