-
-
Notifications
You must be signed in to change notification settings - Fork 2
28 lines (26 loc) · 1.12 KB
/
Copy pathpr-welcome.yml
File metadata and controls
28 lines (26 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: PR Welcome
# Note that this `pull_request_target` is vulnerable, it grants write access to a fork repo
# DO NOT ADD ANY CHECKOUT/CACHING in this workflow
on:
pull_request_target:
types: [opened]
jobs:
pr-open-greeting:
runs-on: ubuntu-latest
steps:
- uses: actions-cool/check-user-permission@v2
id: isTeamMember
with:
require: 'write'
username: ${{ github.event.pull_request.user.login }}
- uses: actions-awesome/pr-helper@1.1.1
if: steps.isTeamMember.outputs.require-result == 'false'
with:
actions: 'add-assignees, add-reviewers, greeting, add-labels'
assignees: 'element-plus/backers'
reviewers: 'element-plus/backers'
labels: 'Contribution::Community'
token: ${{ github.token }}
pr-number: ${{ github.event.pull_request.number }}
greeting-message: 'Hello %user%, thank you for contributing to %repo%, please see our [guideline](%guideline%) to see how to make contribution'
greeting-guideline-address: 'https://github.com/element-plus/element-plus/blob/dev/CONTRIBUTING.md'