feat: Nest 如何使用 multer 实现文件上传 & use ali-oss #47
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: pr-add-label | |
on: | |
pull_request_target: | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
add-label: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR number | |
id: pr_number | |
run: echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> $GITHUB_ENV | |
- name: Run add-label Action | |
uses: thinkasany/pr-label-action@master | |
with: | |
github_token: ${{ secrets.DOCS_TOKEN }} | |
pr_number: ${{ env.PR_NUMBER }} | |
organize_name: "doocs" | |
team_name: "leetcode-algorithm" |