From 5f71b7879bb990fdf1c2c9f634278aa521179f78 Mon Sep 17 00:00:00 2001 From: Jude Date: Wed, 22 May 2024 07:28:57 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=9A=9A=20rename=20issue=20templates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit renamed so that go install will work and added filter for 🚚 in go releaser --- .../ISSUE_TEMPLATE/bug-report.md | 0 .../ISSUE_TEMPLATE/feature-request.md | 0 .goreleaser.yml | 1 + 3 files changed, 1 insertion(+) rename ".github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" => .github/ISSUE_TEMPLATE/bug-report.md (100%) rename ".github/ISSUE_TEMPLATE/\342\234\250-feature-request.md" => .github/ISSUE_TEMPLATE/feature-request.md (100%) diff --git "a/.github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" b/.github/ISSUE_TEMPLATE/bug-report.md similarity index 100% rename from ".github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" rename to .github/ISSUE_TEMPLATE/bug-report.md diff --git "a/.github/ISSUE_TEMPLATE/\342\234\250-feature-request.md" b/.github/ISSUE_TEMPLATE/feature-request.md similarity index 100% rename from ".github/ISSUE_TEMPLATE/\342\234\250-feature-request.md" rename to .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.goreleaser.yml b/.goreleaser.yml index 8820b61..7468a49 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -71,5 +71,6 @@ changelog: - '^🔖' - '^🔀' - '^🙈' + - '^🚚' - '^Merge' # TODO: Add more filters here From 30ad20a325674134db3bed44c753b793068a260a Mon Sep 17 00:00:00 2001 From: Jude Date: Wed, 22 May 2024 07:31:40 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=91=B7=20limit=20linting=20whenever?= =?UTF-8?q?=20specific=20files=20are=20involved?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lint.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ed09b44..6a293fe 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,6 +2,11 @@ on: push: branches: - main + paths: + - '**.go' + - 'go.mod' + - 'go.sum' + - '.golangci.yml' pull_request: permissions: