mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
chore: Update pr-contributor-welcome.yml (#44340)
* chore: Update pr-contributor-welcome.yml Signed-off-by: afc163 <afc163@gmail.com> * Apply suggestions from code review Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: afc163 <afc163@gmail.com>
This commit is contained in:
parent
0295322564
commit
4d12efed31
28
.github/workflows/pr-contributor-welcome.yml
vendored
28
.github/workflows/pr-contributor-welcome.yml
vendored
@ -9,6 +9,32 @@ on:
|
||||
- 'components/**'
|
||||
|
||||
jobs:
|
||||
read-file:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
require-result: ${{ steps.contributors.outputs.content }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Read contributors.json
|
||||
id: contributors
|
||||
uses: juliangruber/read-file-action@v1
|
||||
with:
|
||||
path: ./contributors.json
|
||||
|
||||
output-log:
|
||||
runs-on: ubuntu-latest
|
||||
needs: read-file
|
||||
steps:
|
||||
- name: contributors.json
|
||||
run: echo "${{ needs.read-file.outputs.require-result }}"
|
||||
- name: creator
|
||||
run: echo "${{ github.event.pull_request.user.login }}"
|
||||
- name: contains
|
||||
run: echo "${{ contains(fromJSON(needs.read-file.outputs.require-result), github.event.pull_request.user.login) }}"
|
||||
- name: merged
|
||||
run: echo "${{ github.event.pull_request.merged }}"
|
||||
|
||||
check-merged:
|
||||
runs-on: ubuntu-latest
|
||||
needs: read-file
|
||||
@ -25,4 +51,4 @@ jobs:
|
||||
<img src="https://github.com/ant-design/ant-design/assets/5378891/e24c6080-bf38-4523-b1cd-f6c43ad7375f" height="200" />
|
||||
|
||||
<!-- WELCOME_CONTRIBUTION -->
|
||||
body-include: '<!-- WELCOME_CONTRIBUTION -->'
|
||||
body-include: '<!-- WELCOME_CONTRIBUTION -->'
|
||||
|
Loading…
Reference in New Issue
Block a user