Prepare release v3.0.0
This commit is contained in:
@@ -1 +1 @@
|
||||
20.18.1
|
||||
24.4.0
|
||||
|
||||
12
README.md
12
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!
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -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",
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user