Skip to content

K8SPSMDB-1325: Add directShardOperation role to clusterAdmin and clusterMonitor #184

K8SPSMDB-1325: Add directShardOperation role to clusterAdmin and clusterMonitor

K8SPSMDB-1325: Add directShardOperation role to clusterAdmin and clusterMonitor #184

Workflow file for this run

name: "PR Labeler"
on:
pull_request:
types: [opened, synchronize]
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: "Label PR"
uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true
label-community:
runs-on: ubuntu-latest
steps:
- name: "Check if PR is from a fork"
if: github.event.pull_request.head.repo.fork == true
run: |
gh pr edit ${{ github.event.pull_request.number }} --repo ${{ github.repository }} --add-label "community"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}