-
Notifications
You must be signed in to change notification settings - Fork 0
update action to run on node22 #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,14 @@ | ||
| r merge-retries: | ||
| description: > | ||
| Number of times to retry enqueueing if it fails. Default is 6. Set to 0 to disable retry logic. | ||
| required: false | ||
| default: "6" | ||
|
|
||
| merge-retry-sleep: | ||
| description: > | ||
| Time (in milliseconds) to sleep between retries. Default is 5000 (5 seconds). Set to 0 to disable sleeping between retries. | ||
| required: false | ||
| default: "5000" | ||
| name: "Enqueue Pull Request" | ||
| description: "Automatically enqueue pull requests into GitHub's native merge queue based on labels and review status" | ||
| author: "waheedahmed" | ||
|
|
@@ -55,7 +66,7 @@ inputs: | |
| default: "0" | ||
|
|
||
| runs: | ||
| using: "node20" | ||
| using: "node22" | ||
| main: "dist/index.js" | ||
|
Comment on lines
68
to
70
|
||
|
|
||
| branding: | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README uses both "enqueuing" and "enqueueing" (e.g., the
label/required-approvalsrows use "enqueuing", but these new rows use "enqueueing"). Consider standardizing the spelling across the README for consistency (pick one form and use it everywhere).