WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Update Host Tags API Documentation #12104

Update Host Tags API Documentation

Update Host Tags API Documentation #12104

Workflow file for this run

name: "Ensure labels"
permissions:
pull-requests: write
on: # yamllint disable-line rule:truthy
pull_request:
types:
- labeled
- unlabeled
- opened
- synchronize
- reopened
- ready_for_review
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Check changelog labels
if: github.event.pull_request.draft == false && false == contains(join(github.event.pull_request.labels.*.name, ','), 'changelog/')
run: |-
echo "::error Add 'changelog/*' label";
exit 1;
- name: OK
run: echo "Thank you!"