feat: 各插件文档增加云原生构建内容,增加tag #48
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: Receive PR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: plugin-lint | |
uses: docker://codingci/plugin-lint:latest | |
- name: markdown-lint | |
uses: docker://tencentcom/markdown-lint:latest | |
- name: Save the PR number in an artifact | |
shell: bash | |
env: | |
PR_NUM: ${{ github.event.number }} | |
run: echo $PR_NUM > pr_num.txt | |
- name: Upload the PR number | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pr_num | |
path: ./pr_num.txt |