Patrick Ruhkopf

Results 16 comments of Patrick Ruhkopf

I'm currently using the following workaround. Might be interesting for others: ``` VERSION=`auto version` if [ ! -z "$VERSION" ]; then auto changelog npm version $VERSION -ws git add -A...

@tomdavidson I assumed that doing so would run Lerna commands. If it doesn't require Lerna at all, then that would be fine, yeah. I'll give it a try when I...

As @sebastian-muthwill mentions, you can use the `ref` attribute to point to a specific branch. This way subsequent jobs always pull the latest code from that branch, and not from...

> [...] if the DNS entry is not found, it does not look like a transient issue that might get resolved on retry. For us it's definitely a transient issue,...

I'm unfamiliar with Lerna and didn't see a straight forward way to replace its commands with NPM. Instead, [I wrote a plugin that filters out commits unrelated to the current...

I got stumped by this as well. I'm trying to write a simple plugin that filters out commits. If no commits are in scope, the `version` command should return empty...

@hipstersmoothie I've made my use case work [in my filter-by-workspace-path plugin](https://github.com/restfulhead/npm-auto-plugins/blob/5e43a959fbe02e64a152f767e931d3e950bda0be/packages/filter-by-workspace-path/src/index.ts#L54) by overwriting the `release.getSemverBump` function and just returning `SEMVER.noVersion` if there are no commits. I don't think this really...

> That's creative! Would have never thought to do that. Kinda cool you can completely control that Yeah, it does feel a bit hacky, but it works, hahah. Btw, off-topic:...

*Update*: I seem to have finally found a combination of the `@octokit` plugins that are compatible with each other. They don't make it easy. Unfortunately I still have to add...

Hi. I'm facing the same issue. As a workaround I'm running the check now from the root of our monorepo. But of course that then reports on all dependencies. It...