This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
Please update your nx-latest workflow to not include the Nx contributors, you are pinging people on your PRs #141
This file contains 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 π | |
permissions: | |
issues: write | |
pull-requests: write | |
on: | |
pull_request: | |
types: ['opened'] | |
issues: | |
types: ['opened'] | |
jobs: | |
welcome: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: 'Welcome π' | |
uses: actions/first-interaction@1d8459ca65b335265f1285568221e229d45a995e # v1.1.1 | |
with: | |
issue-message: | | |
Welcome, ${{github.actor}}! π | |
Thanks for submitting your first issue! :rocket: | |
pr-message: | | |
Welcome, ${{github.actor}}! :wave: | |
Thanks for submitting your first pull request! :rocket: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Add label to first time contributoins | |
uses: Code-Hex/first-label-interaction@68f71358707a913224afdbf8dc47764807345d4c # tag=v1.0.2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-labels: '["first time contribution"]' | |
pr-labels: '["first time contribution"]' |