Skip to content

feat: 各插件文档增加云原生构建内容,增加tag #48

feat: 各插件文档增加云原生构建内容,增加tag

feat: 各插件文档增加云原生构建内容,增加tag #48

Workflow file for this run

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