From b549229d26b0d47dd1d36f4f939fbb2e78b19e65 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Mon, 22 May 2023 11:55:38 +0200 Subject: [PATCH] add "ffmpeg-static bug" issue template, configure template chooser --- .github/ISSUE_TEMPLATE/config.yml | 8 +++++ .github/ISSUE_TEMPLATE/library-bug.yml | 45 ++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/library-bug.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..6c56546 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: ffmpeg questions on SuperUser + url: https://superuser.com/questions/tagged/ffmpeg + about: Please ask questions (or look for existing answers) about ffmpeg itself here. + - name: ffmpeg contact channels + url: https://ffmpeg.org/contact.html + about: Please propose enhancements to ffmpeg itself here. diff --git a/.github/ISSUE_TEMPLATE/library-bug.yml b/.github/ISSUE_TEMPLATE/library-bug.yml new file mode 100644 index 0000000..9a893e4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/library-bug.yml @@ -0,0 +1,45 @@ +name: bug in ffmpeg-static +description: Report that ffmpeg-static (not the downloaded ffmpeg binary!) does not work. +title: "bug: " +labels: ["triage"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! In order to help you, we need detailed information about your setup. + *Note:* Do not use this form if you're having trouble *using* the ffmpeg binary provided by ffmpeg-static! This form is about issues with ffmpeg-static *itself*, e.g. the automatic ffmpeg download. + - type: input + id: ffmpeg-static-version + attributes: + label: ffmpeg-static version + description: Please tell us the exact version of ffmpeg-static you're using, e.g. via `npm ls ffmpeg-static`. + placeholder: ex. ffmpeg-static@5.1.0 + validations: + required: true + - type: input + id: node-version + attributes: + label: Node.js version + description: Please tell us the exact version of Node.js you're using, e.g. via `node --version`. + placeholder: ex. v16.17.1 + validations: + required: true + - type: textarea + id: os + attributes: + label: operating system and/or environment + description: Please specify the operating system you're using (e.g. via `sw_vers` on macOS, or via `lsb_release -a` on Linux). If you're using `ffmpeg-static` in a container environment (e.g. Docker), then provide the exact image URL (including a permanent tag or digest), if possible. + value: | + ex. + - using operating system Foo Bar v1.2.3 + - using Docker Desktop v2.3.4 + - using the Docker image `alpine:3.17.3` + validations: + required: true + - type: textarea + id: problem + attributes: + label: What happened? + description: Also tell us, what you would expect to happen. + validations: + required: true