-
Notifications
You must be signed in to change notification settings - Fork 228
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
tools/get_release_contributors.py: Clarify docs and ignore ImgBotApp & actions-bot #2411
Conversation
1c13397
to
42f2aa0
Compare
tools/get_release_contributors.py
Outdated
|
||
## Website repo (jamulussoftware/jamuluswebsite) | ||
- cd jamuluswebsite | ||
- git log release # Find commit ID of previous version. Search for RELEASE: |
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.
Using --graph
might make the log easier (not sure on that). Also specifying a --format
that limits the result to one line per commit, so long as the info is sufficient (if you're not generally a git user, you may not be familiar with configuring your got log format). RELEASE:
should probably be in quotes to show it's a literal to search for.
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.
Using
--graph
might make the log easier (not sure on that).
Hm, tried with --graph
, not too convinced about the benefits in this case.
Also specifying a
--format
that limits the result to one line per commit, so long as the info is sufficient (if you're not generally a git user, you may not be familiar with configuring your got log format).
Added --oneline
RELEASE:
should probably be in quotes to show it's a literal to search for.
Done.
42f2aa0
to
0ca2870
Compare
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.
Looks like actions-user
also needs to be ignored:
tony@pi:~/jamulus $ ./tools/get_release_contributors.py --from r3_8_1 --to r3_8_2 --repo .
Code contributors: @actions-user @ann0see @atsampson @BLumia @corrados @DavidSavinkoff @djfun @gilgongo @henkdegroot @hoffie @j-santander @mirabilos @ngocdh @npostavs @pljones @Rob-NY @RobyDati @softins
Application translators: @actions-user @ann0see @BLumia @dzpex @henkdegroot @hoffie @ignotus666 @jose1711 @jujudusud @melcon @pljones @rolamos @SeeLook @softins
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.
It's not that much...
0ca2870
to
f42f983
Compare
Updates the
tools/get_release_contributors.py
release helper script:CHANGELOG: Internal: Improved release contributor tooling