mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-22 22:20:02 +00:00
* ci: upgrade actions to avoid node16 deprecantion warning Signed-off-by: tison <wander4096@gmail.com> * try delete size label action Signed-off-by: tison <wander4096@gmail.com> * one more action Signed-off-by: tison <wander4096@gmail.com> --------- Signed-off-by: tison <wander4096@gmail.com>
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
name: Create Issue in downstream repos
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
pull_request_target:
|
|
types:
|
|
- labeled
|
|
|
|
jobs:
|
|
doc_issue:
|
|
if: github.event.label.name == 'doc update required'
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: create an issue in doc repo
|
|
uses: dacbd/create-issue-action@v1.2.1
|
|
with:
|
|
owner: GreptimeTeam
|
|
repo: docs
|
|
token: ${{ secrets.DOCS_REPO_TOKEN }}
|
|
title: Update docs for ${{ github.event.issue.title || github.event.pull_request.title }}
|
|
body: |
|
|
A document change request is generated from
|
|
${{ github.event.issue.html_url || github.event.pull_request.html_url }}
|
|
cloud_issue:
|
|
if: github.event.label.name == 'cloud followup required'
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: create an issue in cloud repo
|
|
uses: dacbd/create-issue-action@v1.2.1
|
|
with:
|
|
owner: GreptimeTeam
|
|
repo: greptimedb-cloud
|
|
token: ${{ secrets.DOCS_REPO_TOKEN }}
|
|
title: Followup changes in ${{ github.event.issue.title || github.event.pull_request.title }}
|
|
body: |
|
|
A followup request is generated from
|
|
${{ github.event.issue.html_url || github.event.pull_request.html_url }}
|