mirror of
https://github.com/esphome/esphome.git
synced 2025-01-31 10:10:56 +00:00
Add needs-docs workflow to fail CI (#5643)
This commit is contained in:
parent
9adda8085a
commit
8eae882d93
24
.github/workflows/needs-docs.yml
vendored
Normal file
24
.github/workflows/needs-docs.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
name: Needs Docs
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [labeled, unlabeled]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
name: Check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check for needs-docs label
|
||||||
|
uses: actions/github-script@v6.4.1
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
issue_number: context.issue.number
|
||||||
|
});
|
||||||
|
const needsDocs = labels.find(label => label.name === 'needs-docs');
|
||||||
|
if (needsDocs) {
|
||||||
|
core.setFailed('Pull request needs docs');
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user