build(deps-dev): bump flatted from 3.3.3 to 3.4.2 in the npm_and_yarn group across 1 directory #20
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: Welcome New Contributors | |
| # Greets people who interact with this repository for the first time. Giving | |
| # them a friendly message when they open their first pull request or issue. | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| greet-new-contributors: | |
| name: Greet new contributors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Post Comment if new contributors | |
| uses: actions/[email protected] | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| issue_message: > | |
| Hello @${{ github.actor }}, thanks for opening your first issue. | |
| Someone will review it soon! | |
| pr_message: > | |
| Hello @${{ github.actor }}, thanks for opening your first Pull | |
| Request. Someone will review it soon! |