-
-
Notifications
You must be signed in to change notification settings - Fork 682
42 lines (38 loc) · 1.36 KB
/
docs-issue.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Create Documentation Issue
on:
pull_request_target:
types: [closed]
branches: [master]
jobs:
check-label-and-create-issue:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: Check for 'needs documentation' label
id: check-label
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GH_TOKEN }}
script: |
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number
});
const hasLabel = labels.some(label => label.name === 'needs documentation');
return hasLabel;
result-encoding: string
- name: Create Docs Issue
if: steps.check-label.outputs.result == 'true'
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GH_TOKEN }}
script: |
const title = `Document: ${context.payload.pull_request.title}`;
const body = `We need to document the new feature introduced in this PR: ${context.payload.pull_request.html_url}`;
await github.rest.issues.create({
owner: 'evcc-io',
repo: 'docs',
title: title,
body: body
});