Brad Rydzewski

Results 251 comments of Brad Rydzewski

This is definitely more of a 2.0 change. I think there is some precedence here now that gitlab supports subgroups which is conceptually similar: https://docs.gitlab.com/ce/user/group/subgroups/ Reference request to support subgroups...

Perhaps the two systems are architected a bit differently. In drone, the yaml file is fetched using the GitHub API and then pre-compiled to an IR and executed. This happens...

> also, in concourse I can have as many or as little pipeline.yml files all over my repo, but some tasks in a pipeline are always going to need file...

Also since we are gathering use cases and information, it would be great if you could prove more context. What underlying problems or use cases are you hoping to solve...

This feature is blocked by https://github.com/kelseyhightower/envconfig/pull/133 The docker runner already has the ability to detect the `:ro` suffix. We are just waiting for this pull request to get merged so...

would we want to white-list repositories for which this metric is calculated? This could limit the effects of cardinality for organizations that have hundreds of repositories, but only want to...

This is still planned. We will need to add a new field to track when the stage was enqueued.

Thoughts on how we want to handle 403 Forbidden, which may indicate Not Found (valid error) or may just indicate the user needs to login (false positive)? Similarly how we...

reference code for custom chi middleware: https://github.com/766b/chi-prometheus/blob/master/middleware.go

I recommend using a query builder here instead: ```Go var buf strings.Builder buf.WriteString(queryBase) buf.Writestring("FROM builds WHERE build_repo_id = :build_repo_id") if params.Event != "" { buf.WriteString("AND build_ref = :build_ref") } buf.WriteString(`ORDER...