forked from mirrors/Awesome-CV
Fix broken GitHub Actions workflows (#402)
* Fix pull-request-labeler to permit outside collaborator * Add welcome GitHub workflow * Update welcome.yaml
This commit is contained in:
parent
a944c26b24
commit
8bffe694f9
2 changed files with 28 additions and 1 deletions
2
.github/workflows/pull-request-labeler.yaml
vendored
2
.github/workflows/pull-request-labeler.yaml
vendored
|
@ -1,7 +1,7 @@
|
||||||
name: Label Pull Requests
|
name: Label Pull Requests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
- pull_request
|
- pull_request_target
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
label-pr:
|
label-pr:
|
||||||
|
|
27
.github/workflows/welcome.yaml
vendored
Normal file
27
.github/workflows/welcome.yaml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
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@v1
|
||||||
|
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. 😄
|
Loading…
Reference in a new issue