From ccafe87b57755edf014884b72732818b04900b55 Mon Sep 17 00:00:00 2001 From: azu Date: Thu, 15 Aug 2024 09:53:10 +0900 Subject: [PATCH] CI: update node versions (#14) * CI: update node versions * CI: add .github/release.yml --- .github/release.yml | 30 ++++++++++++++++++++++++++++++ .github/workflows/test.yml | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..1928cc4 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,30 @@ +changelog: + exclude: + labels: + - 'Type: Meta' + - 'Type: Question' + - 'Type: Release' + + categories: + - title: Security Fixes + labels: ['Type: Security'] + - title: Breaking Changes + labels: ['Type: Breaking Change'] + - title: Features + labels: ['Type: Feature'] + - title: Bug Fixes + labels: ['Type: Bug'] + - title: Documentation + labels: ['Type: Documentation'] + - title: Refactoring + labels: ['Type: Refactoring'] + - title: Testing + labels: ['Type: Testing'] + - title: Maintenance + labels: ['Type: Maintenance'] + - title: CI + labels: ['Type: CI'] + - title: Dependency Updates + labels: ['Type: Dependencies', "dependencies"] + - title: Other Changes + labels: ['*'] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 728ec66..0e01032 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10, 12, 14] + node-version: [ 18, 20, 22 ] steps: - name: checkout uses: actions/checkout@v2