mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 23:22:50 +03:00
20 lines
396 B
YAML
20 lines
396 B
YAML
|
name: Label Checker
|
||
|
on:
|
||
|
pull_request:
|
||
|
types:
|
||
|
- opened
|
||
|
- labeled
|
||
|
- unlabeled
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
check_labels:
|
||
|
name: PR should not have a blocked label
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: docker://agilepathway/pull-request-label-checker:latest
|
||
|
with:
|
||
|
none_of: blocked
|
||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|