From 9e2e3b65769973c6c0be99a2a80101ddda658ec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Pintos=20L=C3=B3pez?= Date: Thu, 7 Nov 2024 12:10:21 +0100 Subject: [PATCH 1/3] chore: update feature request template assignees --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 146bb007..ebbefbaa 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -2,7 +2,7 @@ name: "\U0001F680 Community Ideas" description: "I have an idea or proposal \U0001F4A1!" labels: ["needs triage"] assignees: - - "rsaz" + - "notaphplover" body: - type: markdown attributes: From b7480144635420062bf4ded1ccb9df6a108c015d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Pintos=20L=C3=B3pez?= Date: Thu, 7 Nov 2024 12:10:44 +0100 Subject: [PATCH 2/3] chore: update CI to run on node 20 and 22 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5b98ab0..b4457135 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x] + node-version: [20.x, 22.x] ts-project: [src/tsconfig.json, src/tsconfig-es6.json] env: TS_NODE_PROJECT: ${{ matrix.ts-project }} @@ -73,7 +73,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 22.x cache: npm registry-url: https://registry.npmjs.org/ - name: Install Dependencies From 36ba0e30e627ef644506de4958560096b1a2d21f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Pintos=20L=C3=B3pez?= Date: Thu, 7 Nov 2024 12:10:57 +0100 Subject: [PATCH 3/3] chore: remove reading time workflow --- .github/workflows/reading-time.yml | 38 ------------------------------ 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/reading-time.yml diff --git a/.github/workflows/reading-time.yml b/.github/workflows/reading-time.yml deleted file mode 100644 index e81baf73..00000000 --- a/.github/workflows/reading-time.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Reading Time - -on: - workflow_dispatch: - push: - branches: - - master - paths: - - "**.md" - -jobs: - calculate-reading-time: - runs-on: ubuntu-latest - name: Calculate Reading Time - permissions: - contents: write - pull-requests: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Calculate & Prepend Reading Time - uses: harunrst/reading-time-action@v1.0 - with: - strategy: all - - - name: Commit Changes - uses: EndBug/add-and-commit@v9 - with: - message: Edited markdown files with reading times. - push: false - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 - with: - title: Update markdown files with reading time. - body: Auto-generated Pull Request by [reading-time-action](https://github.com/harunrst/reading-time-action). - branch: reading-time-action