-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
🚚 Massive update: New features, Node 20, much less dependencies, bug fixes, more tests #384
base: master
Are you sure you want to change the base?
Conversation
Gets around 15000 file limit
👷♂️ Added Debug Action for in project testing
Hey @mountainash, thanks for all this amazing work! Some these things are long overdue and I also really like the new features you added (especially the runtime env vars 💯). I finally found some time to look through the open PRs and issues and merged the most pressing ones (like Node 20) but most likely won't have the time to properly maintain and develop this action beyond general maintenance. This is quite a big PR with a lot of changes to not just the action but also the repo and its setup which makes it harder to review and incorporate. I'd be willing to accept these changes in some smaller chunks into this repository or as an alternative help transition this action and its maintenance to you and your repository and make the fork the "official" one instead. Let me know how you want to move forward with this. Cheers! ✌️ |
Thank you very much for your appreciation and I'm sorry I didn't break this up in to many PR's - but that comes with quite the "admin" overhead that I wasn't ready to make on what looked to be an abandoned project (I recently did many PR's on another project which were ignored and autoclosed shortly after - it's quite disheartening to see efforts wasted 😿). If you don't have the time and are looking to offload this project, I'd gladly become the new care-taker for it - I even have a few more small bugs to fix and reliability features that will help make the project even more robust. How would a transfer work? Aren't everyone's |
Totally understand! I have had similar experiences before 😅
Nice! I had some ideas/feature roadmap a while back as well, have to dig up my notes sometime.
Yes, all current users reference the action directly via Personally I think a change in ownership of a project like this should be communicated well and be done in a transparent way with a explicit action having to be taken by the user to change to the new owner. The simplest approach I can think off is to create one last release that mentions the change of maintainers, add a big banner pointing to your fork so everyone can just switch over at their own choosing and deprecate the action (sadly not possible on GitHub right now) / archive the repository. Less aggressive approach would be to just advertise your fork as a improved version and keep this one around. |
All choices work for me... I made the changes for me and my use of your Action at @ginetta - but it's open-source and anyone is already free to use There's a chance some of the changes I've made to update the GitHub Actions core package could effect some projects depending on how they are built. I've only really heavily tested using the "PREBUILT" flow. I think it would be good to release my changes as I'd also have to release it onto the GitHub Actions Marketplace, but I think it could be confusing if there's two with the same name there, so how would you suggest to handle this? TODO
|
truncate long ALIAS_DOMAINS values
Feature: Comment Formatting
Is this still planning to be released in another repo? I really would like to see the |
FEATURE ✨ Added
--archive=tgz
arg to Vercel deploy when usingPREBUILT
option to allow built deployments over 1500 filesAdded defaults
Added GitHub Actions workflow to test the action
GITHUB_REPOSITORY
is no longer a required input (it can be deduced using theGITHUB_TOKEN
)Allow Vercel domain aliases to be set on PRs
Using
@actions/exec
instead of spawn = require('child_process') for better OS portabilityFix: EditorConfig conflicted with Eslint rules
Using npx to run Vercel CLI to avoid version miss-matches (as seen in Error: undefinedVercel CLI 31.2.2 #374, Error: undefinedVercel CLI 31.0.1 #367, Error: undefinedVercel CLI 28.0.1 #226)
FEATURE ✨ Add a Workflow Summary to each run
Exporting
VERCEL_PREVIEW_URL
andVERCEL_DEPLOYMENT_UNIQUE_URL
for use in other job stepsUsing @actions/core to correctly get boolean and multilined inputs
Removed default "deploy" label from PRs
More emojis in logs 📝
Better accessibility formatting for comment table
remove references of
[skip ci]
, it's deprecatedReplace
_
in alias domains with-
to match allowed domain namesFEATURE ✨ Transfer runtime secrets/envars from GHAction to Vercel Settings
See CHANGELOG for many 📦 dependencies updates (inc. Node 20) and bug fixes