mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2026-01-10 19:22:43 +08:00
Bumps [actions/first-interaction](https://github.com/actions/first-interaction) from 1 to 3. - [Release notes](https://github.com/actions/first-interaction/releases) - [Commits](https://github.com/actions/first-interaction/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/first-interaction dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
718 B
YAML
27 lines
718 B
YAML
name: Welcome for First Issue or Pull Request
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
issues:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
welcome:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Welcome for First Issue or Pull Request
|
|
uses: actions/first-interaction@v3
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-message: |
|
|
### :wave: Welcome! Looks like this is your first issue.
|
|
|
|
Hey, thanks for your contribution! Please give us a bit of time to review it. 😄
|
|
pr-message: |
|
|
### :wave: Welcome! Looks like this is your first pull request.
|
|
|
|
Hey, thanks for your contribution! Please give us a bit of time to review it. 😄
|