Bug: next/image component used without width/height props causes CLS and build warnings #59
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: Auto Comment on Assignment | |
| on: | |
| issues: | |
| types: [assigned] | |
| permissions: | |
| issues: write | |
| jobs: | |
| comment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add comment to issue | |
| uses: actions/github-script@v6 | |
| with: | |
| script: | | |
| const assignee = context.payload.assignee.login; | |
| const message = `Hi @${assignee}! We have officially assigned this issue to you. Please start working on it, and good luck with your PR!\n\n**ETA: 3 days**\nIssue will be assigned to another contributor if failed to do so!\n\n---\n**Join our Discord channel for GSSoC'26 doubts:** https://discord.gg/GGdauNAqWn`; | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| body: message | |
| }); |