mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
23 lines
643 B
YAML
23 lines
643 B
YAML
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 }}
|