Update pre-commit.yml add emoji to all name steps #233
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: 🥇 First Interaction | |
| on: | |
| pull_request: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| welcome: | |
| name: 👽 Greetings Earthling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 👋🏽 Welcome Message | |
| uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d | |
| with: | |
| issue_message: | | |
| Thanks for opening this issue! We appreciate your contribution. | |
| pr_message: | | |
| 🎉 Welcome to our project, @{{ github.actor }}! Thank you for contributing! | |
| We’re glad to have you here. If you have any questions, feel free to ask! | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} |