From 4e637056b2bf49e0c0992bab606b53ccbfe0023e Mon Sep 17 00:00:00 2001 From: Tim Basten Date: Tue, 3 Feb 2026 16:35:22 +0800 Subject: [PATCH] add pr --- .gitea/PULL_REQUEST_TEMPLATE.yml | 55 ++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .gitea/PULL_REQUEST_TEMPLATE.yml diff --git a/.gitea/PULL_REQUEST_TEMPLATE.yml b/.gitea/PULL_REQUEST_TEMPLATE.yml new file mode 100644 index 0000000..8d940eb --- /dev/null +++ b/.gitea/PULL_REQUEST_TEMPLATE.yml @@ -0,0 +1,55 @@ +name: Pull Request +about: Submit a pull request +title: "" +body: + - type: textarea + id: description + attributes: + label: Description + description: Provide a clear description of your changes. + validations: + required: true + - type: input + id: related-issue + attributes: + label: Related Issue + description: Link to related issue (if applicable) + placeholder: "e.g., #123" + validations: + required: false + - type: input + id: closes-issue + attributes: + label: Closes Issue + description: Link to issue this PR closes (if applicable). Using "Closes #123" will automatically close the issue when merged. + placeholder: "e.g., #456" + validations: + required: false + - type: textarea + id: testing-instructions + attributes: + label: Testing Instructions, Screenshots, Recordings + description: | + Please provide instructions on how to test your changes, note the devices and browsers this has been tested on, and include any relevant images for UI changes. + placeholder: | + Testing setup: + - 1. run `php artisan migrate` + - 2. seed the database with `php artisan app:ais:assessments:index --since=2025-01-01` + + Testing instructions: + 1. Navigate to... + 2. Click on... + 3. Verify that... + + Tested on: + - [ ] Chrome + - [ ] Firefox + + Test for: + - [ ] Desktop + - [ ] Mobile (portrait) + - [ ] Mobile (landscape) + - [ ] Tablet (portrait) + - [ ] Tablet (landscape) + validations: + required: false