fix: prevent exporting metric physical table data #4313
Workflow file for this run
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: "PR Doc Labeler" | |
on: | |
pull_request_target: | |
types: [opened, edited, synchronize, ready_for_review, auto_merge_enabled, labeled, unlabeled] | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
triage: | |
if: ${{ github.repository == 'GreptimeTeam/greptimedb' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: github/[email protected] | |
with: | |
configuration-path: .github/doc-label-config.yml | |
enable-versioned-regex: false | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
sync-labels: 1 | |
- name: create an issue in doc repo | |
uses: dacbd/[email protected] | |
if: ${{ github.event.action == 'opened' && contains(github.event.pull_request.body, '- [ ] This PR does not require documentation updates.') }} | |
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 }} | |
- name: Check doc labels | |
uses: docker://agilepathway/pull-request-label-checker:latest | |
with: | |
one_of: Doc update required,Doc not needed | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |