-
Notifications
You must be signed in to change notification settings - Fork 78
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
Update to Node 16 #24
Comments
Our action started to hang with Waiting for status to be reported, will change to node16 and see if it makes any difference |
I was using the |
It seems like this repo is no longer maintained. Luckily it's a small action and I was able to clean it up and add it to a workflow using https://github.com/Esri/calcite-design-system/blob/dev/.github/workflows/pr-untruncated.yml The options in the usage example from this repo's readme would go here like this: const REGEX = new RegExp("([a-z])+\/([a-z])+");
const MIN_LENGTH = 5;
const MAX_LENGTH = 20;
const ALLOWED_PREFIXES = ["feature", "fix", "JIRA"];
const DISALLOWED_PREFIXES = ["feat/", "hotfix"];
const PREFIX_CASE_SENSITIVE = false; |
@deepakputhraya #39 please take a look at this issue and related PR. Thanks |
We need node 20 now |
We're using this action in our project and I noticed that Github Actions issues warnings stating that Node 12 does not receive support anymore as of April 2022, see Github Blog.
I think it's as easy as replacing
with
in
action.yml
.The text was updated successfully, but these errors were encountered: