Bug: Extension adds button in https://github.com/login/oauth/authorize
#56
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: 🚀 Greetings and First Interaction | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| jobs: | |
| send_greeting: | |
| name: Send a friendly greeting | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: 👋 Welcome new contributors | |
| uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| ### 👋 Welcome to the **en-git** project! | |
| Hey there, and thank you for opening your **first issue**! 🎉 | |
| Your feedback helps us make en-git even better. | |
| 💡 Please take a moment to review our [Contributing Guidelines](https://github.com/TejasS1233/en-git/blob/main/CONTRIBUTING.md) before submitting more details — it really helps speed up the process. | |
| _We're thrilled to have you here — the team will get back to you soon!_ | |
| **– The en-git Team 🚀** | |
| pr-message: | | |
| ### 🎉 Thanks for your first contribution to **en-git**! | |
| Congratulations on opening your **first pull request**! 🙌 | |
| Our maintainers will review your code shortly. | |
| In the meantime: | |
| - ✅ Double-check your PR description and linked issues. | |
| - 💬 Engage in any requested changes or feedback. | |
| - 📄 Review our [Contributing Guidelines](https://github.com/TejasS1233/en-git/blob/main/CONTRIBUTING.md). | |
| We really appreciate your time and effort in improving en-git! 💙 | |
| **– The en-git Team 🚀** | |
| - name: 🧾 Log Action Summary | |
| run: echo "Greeting successfully sent to new contributor!" |