mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
17 lines
479 B
YAML
17 lines
479 B
YAML
---
|
|
name: Enforce PR labels
|
|
|
|
on:
|
|
workflow_call:
|
|
pull_request:
|
|
types: [labeled, unlabeled, opened, edited, synchronize]
|
|
jobs:
|
|
enforce-label:
|
|
name: Enforce Label
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Enforce Label
|
|
uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # 2.2.2
|
|
with:
|
|
BANNED_LABELS: "hold,needs-qa"
|
|
BANNED_LABELS_DESCRIPTION: "PRs with the hold or needs-qa labels cannot be merged"
|