From 3372cfa0ab81bd901dd766c3121d387c0fddfc42 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Mon, 11 Aug 2025 14:16:41 +0100 Subject: [PATCH 1/5] Prepare release v3.0.0 --- .node-version | 2 +- README.md | 12 +++++++++--- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.node-version b/.node-version index d4b7699..ee3b424 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -20.18.1 +24.4.0 diff --git a/README.md b/README.md index 6edb75d..bc0caa0 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,11 @@ An action for filtering pull requests (PRs) and issues from first-time contributors. +## Breaking Changes in v3.0.0 + +Version 3.0.0 introduces breaking changes: +- If you're using a self-hosted runner, ensure it's on version on [v2.327.1](https://github.com/actions/runner/releases/tag/v2.327.1) or later + When a first-time contributor opens a PR or issue, this action will add a comment to the PR or issue with a message of your choice. This action is useful for welcoming first-time contributors to your project and providing them with @@ -39,13 +44,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/first-interaction@vX.Y.Z # Set this to the latest release + - uses: actions/first-interaction@v3 with: - issue-message: | + repo_token: ${{ github.token }} + issue_message: | # Issue Message with Markdown This is the message that will be displayed! - pr-message: | + pr_message: | # PR Message with Markdown This is the message that will be displayed! diff --git a/package-lock.json b/package-lock.json index d3e1e6b..e197c98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "first-interaction-action", - "version": "2.0.0", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "first-interaction-action", - "version": "2.0.0", + "version": "3.0.0", "license": "MIT", "dependencies": { "@actions/core": "^1.11.1", diff --git a/package.json b/package.json index b90d308..5c500af 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "first-interaction-action", "description": "An action for greeting first time contributors.", - "version": "2.0.0", + "version": "3.0.0", "author": "GitHub", "type": "module", "private": true, From 6d0c4b592bb0b9dc083ea1a7dde17a847def8f5d Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Mon, 11 Aug 2025 14:18:00 +0100 Subject: [PATCH 2/5] Lint --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bc0caa0..f657609 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,9 @@ contributors. ## Breaking Changes in v3.0.0 Version 3.0.0 introduces breaking changes: -- If you're using a self-hosted runner, ensure it's on version on [v2.327.1](https://github.com/actions/runner/releases/tag/v2.327.1) or later + +- If you're using a self-hosted runner, ensure it's on version on + [v2.327.1](https://github.com/actions/runner/releases/tag/v2.327.1) or later When a first-time contributor opens a PR or issue, this action will add a comment to the PR or issue with a message of your choice. This action is useful From 56cdf1640221072555941fffc045bb948c88568d Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Mon, 11 Aug 2025 14:18:42 +0100 Subject: [PATCH 3/5] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f657609..3564679 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ contributors. Version 3.0.0 introduces breaking changes: -- If you're using a self-hosted runner, ensure it's on version on +- If you're using a self-hosted runner, ensure it's on version [v2.327.1](https://github.com/actions/runner/releases/tag/v2.327.1) or later When a first-time contributor opens a PR or issue, this action will add a From e5b5b2dd6196bc6b1411f92921c64a84de7ae8bd Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Mon, 11 Aug 2025 14:27:34 +0100 Subject: [PATCH 4/5] undo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3564679..56d9264 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,8 @@ jobs: steps: - uses: actions/first-interaction@v3 with: - repo_token: ${{ github.token }} - issue_message: | + repo-token: ${{ github.token }} + issue-message: | # Issue Message with Markdown This is the message that will be displayed! From f227809c7b8a1475f4cbf5e53082310b7d41a836 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Mon, 11 Aug 2025 14:28:06 +0100 Subject: [PATCH 5/5] undo --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 56d9264..633c197 100644 --- a/README.md +++ b/README.md @@ -48,12 +48,11 @@ jobs: steps: - uses: actions/first-interaction@v3 with: - repo-token: ${{ github.token }} issue-message: | # Issue Message with Markdown This is the message that will be displayed! - pr_message: | + pr-message: | # PR Message with Markdown This is the message that will be displayed!