Create readme.md #23
Workflow file for this run
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 Pull Request | |
| on: | |
| pull_request: | |
| types: [opened] | |
| branches: | |
| - main | |
| jobs: | |
| comment_pr: | |
| runs-on: ubuntu-latest | |
| name: Auto-comment PR | |
| permissions: # Add this block | |
| pull-requests: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Add Pull Request Comment | |
| uses: thollander/actions-comment-pull-request@v3 | |
| with: | |
| message: | | |
| π Hi @${{ github.actor }}, thank you for your contribution! | |
| We appreciate your effort in submitting this pull request to **TechInterviewMaster** π | |
| π Our team will review your changes shortly. | |
| If you havenβt already: | |
| - Make sure your PR follows our [contributing guidelines](../blob/main/CONTRIBUTING.md) | |
| - Link any related issues | |
| - Add a meaningful description of your changes | |
| Let's make tech interviews easier for everyone! πͺ | |
| β _The Maintainers_ |