Merge 78bfcad6183269c547c5f5e0f8f25fa790026af4 into 4481dd7fe6dd8c9bd116c391aed544de6239c640

This commit is contained in:
Tobi 2026-02-21 05:31:21 -08:00 committed by GitHub
commit 668a1e9ef2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 72 additions and 0 deletions

34
.github/workflows/template-label.js vendored Normal file
View File

@ -0,0 +1,34 @@
/*
* Script for commenting on issues/PRs when the template is missing or ignored
*/
module.exports = async ({github, context}) => {
const label = context.payload.label && context.payload.label.name;
if (!label) return;
const isPR = !!context.payload.pull_request;
const number = isPR ? context.payload.pull_request.number : context.payload.issue.number;
let body = '';
if (label === 'template-ignored') {
body = 'Please fill in the template completely or at least as much as possible. The team needs more detailed information.';
} else if (label === 'template-missing') {
const kind = isPR ? 'PR' : 'issue';
let template;
if (isPR) {
template = '<details><summary>Raw template</summary>\n```\n' + process.env.PR_TEMPLATE + '\n```\n</details>';
} else {
template = '[Bug report template](https://raw.githubusercontent.com/TeamNewPipe/NewPipe/refs/heads/dev/.github/ISSUE_TEMPLATE/bug_report.yml), [Feature request template](https://raw.githubusercontent.com/TeamNewPipe/NewPipe/refs/heads/dev/.github/ISSUE_TEMPLATE/feature_request.yml)';
}
body = `Thank you for creating this ${kind}. Please edit your description and add the template with the information: ${template}`;
} else {
return;
}
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: number,
body
});
}

38
.github/workflows/template-label.yml vendored Normal file
View File

@ -0,0 +1,38 @@
name: Template label comment
on:
issues:
types: [labeled]
pull_request:
types: [labeled]
permissions:
issues: write
pull-requests: write
jobs:
comment_on_label:
name: Comment on labeled issue/PR
if: ${{ github.event.label.name == 'template-ignored' || github.event.label.name == 'template-missing' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Get PR template
if: ${{ github.event.pull_request && github.event.label.name == 'template-missing' }}
run: |
set -euo pipefail
{
echo 'PR_TEMPLATE<<EOF'
curl https://raw.githubusercontent.com/TeamNewPipe/NewPipe/refs/heads/dev/.github/PULL_REQUEST_TEMPLATE.md
echo EOF
} >> $GITHUB_ENV
- name: Post comment
uses: actions/github-script@v8
timeout-minutes: 2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('.github/workflows/template-label.js');
await script({github, context});