build: add nodejs/node update authors integration#13943
Conversation
WikiRik
left a comment
There was a problem hiding this comment.
Don't forget to add the Action for it; https://github.com/nodejs/node/blob/master/.github/workflows/authors.yml
|
Could you add this file to the list of linted files in the eslint config? |
Yup will add it on the weekend |
Can you elaborate where the line I must add this? because i see there is line with |
There was a problem hiding this comment.
Could you add this file to the list of linted files in the eslint config?
Turns out eslint ignores dotfolders by default.
If we want to lint .github, we can replace ignorePatterns with this (in .eslintrc):
ignorePatterns: [
'dist/**/*',
'types/**/*',
'dev/**/*',
'!.github',
],However I think we should consider everything in .github to be reserved to github (as in they dictate what can be in it) and move the script to /dev/update-authors.js. Then change ignorePatterns to this:
ignorePatterns: [
'dist/**/*',
'types/**/*',
'dev/**/*', // dev was temporarily ignored to ease transition to new linter
'!dev/update-authors.js',
],Also I see markdown files have all been changed. Can you revert these changes for now? So we can discuss them in a separate PR
Done, need your review |
|
Oops the lint worked and there's some errors i need to fix! |
|
@ephys you requested some changes last month, are they still valid or have they been handled now? |
|
No I think we're good to go |
|
I think @sdepold should approve this PR too after looks up to his review, maybe we can create another related PR if I missing something, I will merge this :) |
| corpix <me@corpix.ru> | ||
| Mark Kornfilt <mark.kornfilt@livestream.com> | ||
| Laurent Zuijdwijk <Laurent.Zuijdwijk@gamil.com> | ||
| Meg Sharkey <meg@metamarketsgroup.com> |
There was a problem hiding this comment.
Gosh. You know how old I've been when I worked with Meg?
There was a problem hiding this comment.
@megshark nostalgic 👋 from me
Same to @mickhansen and @janmeier
There was a problem hiding this comment.
@sdepold I'm almost in tears seeing what progress you've start so far, thank you for your hard work!
There was a problem hiding this comment.
Yeah, good times, good times! I miss it 👋
|
Love it. Kudos to the peeps! |
|
Nice thanks!!! Please update my email to ***@***.*** blushing!
Meg
…On Tue, Feb 22, 2022, 11:09 AM Sascha Depold ***@***.***> wrote:
Love it. Kudos to the peeps!
—
Reply to this email directly, view it on GitHub
<#13943 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHNKDTJHFYDCO7YLJUGDDTU4PNPLANCNFSM5LZONOAA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
@megshark The email addresses are based on the ones provided with the merged commits, but maybe @bl0cknumber can look into the option to change email addresses. You would however need to post your updated email in a comment through the GitHub website since GitHub redacts email addresses sent over email replies. |
|
OK sure, thanks! Metamarkets was acquired by Snapchat in 2017 (leaving an
open source legacy of Apache Druid). My github is megshark at Gmail but I
can try as you suggest.
I miss NodeJS and Sequelize! Back in the Java world for now... ;)
…-Meg
On Tue, Feb 22, 2022, 1:57 PM Rik Smale ***@***.***> wrote:
@megshark <https://github.com/megshark> The email addresses are based on
the ones provided with the merged commits, but maybe @bl0cknumber
<https://github.com/bl0cknumber> can look into the option to change email
addresses. You would however need to post your updated email in a comment
through the GitHub website since GitHub redacts email addresses sent over
email replies.
—
Reply to this email directly, view it on GitHub
<#13943 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHNKDXAPJV4IUWI6ZQLS7TU4QBGNANCNFSM5LZONOAA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
🎉 This PR is included in version 7.0.0-alpha.10 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
@fzn0x I just saw the failed runs for this, can you check it out? Seems to be a permission issue |
Let me see if I can fix it |
|
Should just be |
* build: remove probot-stale (sequelize#13595) * feat: add node update authors script * build: add authors.yml * build: add authors.yml * fix: filter bots from author using regex * meta: not related! revert docs * meta: not related! fix weird lint in my local * revert * build: move node update authors script * add missing docs based on commit 36ad644 * fix: lint * Update dev/update-authors.js Co-authored-by: Rik Smale <13023439+WikiRik@users.noreply.github.com> * Update dev/update-authors.js Co-authored-by: Rik Smale <13023439+WikiRik@users.noreply.github.com> * build(authors): use automatic token authentication * fix: eslint * fix eslint quotes * ignore dev/update-authors * fix: curly and quotes * build(authors): update author * Update AUTHORS Co-authored-by: Rik Smale <13023439+WikiRik@users.noreply.github.com> * Change to permalink * meta: update AUTHORS list Co-authored-by: Rik Smale <13023439+WikiRik@users.noreply.github.com> Co-authored-by: Zoé <zoe@ephys.dev>
Add update authors script according to our latest license changes.