ci: add action to create doc issue when change labelled (#648)

ci: add action to create doc issue when change labeled
This commit is contained in:
Ning Sun
2022-11-29 14:25:57 +08:00
committed by GitHub
parent baef640fe3
commit 2a36e26d19

22
.github/workflows/doc-issue.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Create Issue in docs repo on doc related changes
on:
issues:
types:
- labeled
jobs:
doc_issue:
if: github.event.label.name == 'doc update required'
runs-on: ubuntu-latest
steps:
- name: create an issue in doc repo
uses: dacbd/create-issue-action@main
with:
owner: GreptimeTeam
repo: docs
token: ${{ secrets.DOCS_REPO_TOKEN }}
title: Update docs for {{ github.event.issue.title }}
body: |
A document change request is generated from ${{ github.event.issue.html_url }}
assignees: ${{ github.event.issue.user.login }}