-
Notifications
You must be signed in to change notification settings - Fork 38
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
Optional repo file #75
Conversation
af5d0bb
to
ca4b482
Compare
I guess we should also mention this in the README! |
Fixes #74 Adds a new flag for all commands `--repos=<filename>`, which gives the ability to select a different file from the default `repos.txt` one.
- Changed error text to include filename last Signed-off-by: Sebastien Le Digabel <sledigabel@gmail.com>
ca4b482
to
5ee11c7
Compare
The `pr-status` command was added after and needed the extra danse to include the new repo file option. Also renamed the `pr_status` package into `prstatus` as gofumpt told me packages should not include underscores. https://go.dev/blog/package-names
.. addressing the PR comment. Also renamed the update_prs package name for the same reason as the pr_status one.
There's an issue with foreach, the flags aren't parsed (because of the disabledParsing, as expected) |
Adding a manual parsing of the foreach parameters and extra testing. Also added some details in the Readme
This is now resolved, but adding a manual parsing of the arguments for foreach. |
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.
LGTM, adds option to specify alternative repos file.
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.
LGTM - thanks @sledigabel!
Fixes #74
Adds a new flag for all commands
--repos=<filename>
, which gives theability to select a different file from the default
repos.txt
one.