Feature: Missing BackToTop Button in Events Page | Missing ProgressBar in Badges, Events, Learn and Compare Pages #216
This file contains hidden or 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 Issue | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| comment-on-new-issue: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Add Comment | |
| uses: actions/github-script@v5 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| const issue = context.payload.issue; | |
| const issueCreator = issue.user.login; | |
| const issueNumber = issue.number; | |
| if (issue.title.toLowerCase().includes('add profile')) { | |
| const commentMessage = `@all-contributors please add @${issueCreator} for review`; | |
| github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: issueNumber, | |
| body: commentMessage | |
| }); | |
| } |