From 0ad660d5186e3c1b6a7752eec8c5ce612980678a Mon Sep 17 00:00:00 2001 From: h13 Date: Sat, 14 Mar 2026 03:20:42 +0000 Subject: [PATCH 1/4] chore: Created local '.github/PULL_REQUEST_TEMPLATE.md' from remote 'sync/.github/PULL_REQUEST_TEMPLATE.md' Synced from h13/.github --- .github/PULL_REQUEST_TEMPLATE.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..3861772 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,10 @@ + + +## Summary + + + +## Test plan + +- [ ] Tests pass locally +- [ ] CI passes From 482e095a778f4838fe9ba0b3f75ebf35da397761 Mon Sep 17 00:00:00 2001 From: h13 Date: Sat, 14 Mar 2026 03:20:42 +0000 Subject: [PATCH 2/4] chore: Created local '.github/ISSUE_TEMPLATE/bug_report.yml' from remote 'sync/.github/ISSUE_TEMPLATE/bug_report.yml' Synced from h13/.github --- .github/ISSUE_TEMPLATE/bug_report.yml | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..b63fc8c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,32 @@ +name: Bug report +description: Report a bug or unexpected behavior +labels: ["bug"] +body: + - type: textarea + id: description + attributes: + label: Description + description: What happened? + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected behavior + description: What did you expect to happen? + validations: + required: true + - type: textarea + id: steps + attributes: + label: Steps to reproduce + description: How can we reproduce the issue? + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment + description: "OS, runtime version, etc." + validations: + required: false From b5c4c965e7551445ed43fcd5f8260e77132ad8f0 Mon Sep 17 00:00:00 2001 From: h13 Date: Sat, 14 Mar 2026 03:20:42 +0000 Subject: [PATCH 3/4] chore: Created local '.github/ISSUE_TEMPLATE/feature_request.yml' from remote 'sync/.github/ISSUE_TEMPLATE/feature_request.yml' Synced from h13/.github --- .github/ISSUE_TEMPLATE/feature_request.yml | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..01420c1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,25 @@ +name: Feature request +description: Suggest a new feature or improvement +labels: ["enhancement"] +body: + - type: textarea + id: problem + attributes: + label: Problem + description: What problem does this solve? + validations: + required: true + - type: textarea + id: solution + attributes: + label: Proposed solution + description: How should it work? + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Alternatives considered + description: Any other approaches you considered? + validations: + required: false From ac3678a9b9bda83a3a275ecda14315ab22195715 Mon Sep 17 00:00:00 2001 From: h13 Date: Sat, 14 Mar 2026 03:20:42 +0000 Subject: [PATCH 4/4] chore: Created local '.github/workflows/publish.yml' from remote 'sync/.github/workflows/publish.yml' Synced from h13/.github --- .github/workflows/publish.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..485a00a --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,14 @@ +name: Publish + +on: + push: + tags: + - "v*" + +permissions: + contents: write + +jobs: + publish: + uses: h13/.github/.github/workflows/publish-node.yml@v1 + secrets: inherit