From 1ff1dc59f16017bacd7a8610335d7be908dde64c Mon Sep 17 00:00:00 2001 From: Souma <101255979+5ouma@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:31:38 +0900 Subject: [PATCH] docs(readme): Ignore the sample code for Node.js Because the `@hono/node-server` is not used on this project. --- .github/pr-labeler.yml | 6 +++--- .tagpr => .github/tagpr.ini | 1 + .github/workflows/release.yml | 2 ++ README.md | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) rename .tagpr => .github/tagpr.ini (72%) diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml index 39e6da5..219094b 100644 --- a/.github/pr-labeler.yml +++ b/.github/pr-labeler.yml @@ -19,9 +19,9 @@ customLabels: label: ๐Ÿ”ง Maintenance - text: "- [x] ๐ŸŽฝ CI" label: ๐ŸŽฝ CI - - text: "chore(deps): " - label: โ›“๏ธ Dependencies - text: "- [x] ๐Ÿง  Meta" label: ๐Ÿง  Meta - - text: Release for v + - text: "chore(deps): " + label: โ›“๏ธ Dependencies + - text: "Release: v" label: ๐Ÿš€ Release diff --git a/.tagpr b/.github/tagpr.ini similarity index 72% rename from .tagpr rename to .github/tagpr.ini index 41e04c7..c69b696 100644 --- a/.tagpr +++ b/.github/tagpr.ini @@ -3,5 +3,6 @@ versionFile = deno.json vPrefix = true changelog = false + templateText = Release: {{ .NextVersion }}\n{{ .Changelog }} majorLabels = ๐Ÿงจ Breaking Change minorLabels = ๐ŸŽ‰ New Feature diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5a1f3e6..78ffe63 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,8 @@ jobs: - name: ๐Ÿท๏ธ Release a New Version id: tagpr uses: Songmu/tagpr@591c6e0c988bccee7dda02bce1af7a3b2dc47065 # v1.4.2 + with: + config: .github/tagpr.ini env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index eaa7309..35c31d5 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ tags. To do this, simply add the ref name to the sub-directory. (i.e. 1. Add this code to the `index.js` - ```js + ```js ignore import { serve } from "@hono/node-server"; import app from "@5ouma/reproxy"; serve(app);