-
Notifications
You must be signed in to change notification settings - Fork 82
chore: add CI step for validating contributor READMEs #1
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
Changes from 19 commits
96c20c4
a5c4495
20204b0
902b32f
1906520
da735da
b191321
629f4b3
2b9da92
23f1cee
e20e679
df2e47e
36ebd8d
c3f998d
9e48eb8
3b9ec5e
88f7be2
e035f1f
3b9c01e
bc4bbda
abf9815
affc506
65fb7bc
96fa5d4
5c45642
ffd9861
bdf9c5f
39b264a
a2c246e
50d651c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: CI | ||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
| # Cancel in-progress runs for pull requests when developers push new changes | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
| jobs: | ||
| validate-contributors: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: true | ||
| matrix: | ||
| go-version: ["1.23.x"] | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v4 | ||
| - name: Set up Go ${{ matrix.go-version }} | ||
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: ${{ matrix.go-version }} | ||
| - name: Validate | ||
| run: go run ./scripts/validate-contributor-readmes/main.go | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| module coder.com/coder-registry | ||
|
|
||
| go 1.23.2 | ||
|
|
||
| require gopkg.in/yaml.v3 v3.0.1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= | ||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
| gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | ||
| gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| --- | ||
| display_name: Coder | ||
| bio: Coder provisions cloud development environments via Terraform, supporting Linux, macOS, Windows, X86, ARM, Kubernetes and more. | ||
| github: coder | ||
| linkedin: https://www.linkedin.com/company/coderhq | ||
| website: https://www.coder.com | ||
| support_email: [email protected] | ||
| status: official | ||
| --- | ||
|
|
||
| # Coder | ||
|
|
||
| Coder provisions cloud development environments via Terraform, supporting Linux, macOS, Windows, X86, ARM, Kubernetes and more. | ||
|
Comment on lines
+11
to
+13
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This hasn't come up in any of the conversations yet, but I think that it's safe to give developers the freedom to throw whatever they want in the body. We'll just make sure the code always ignores it |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| display_name: Nataindata | ||
| bio: Data engineer | ||
| github: nataindata | ||
| website: https://www.nataindata.com | ||
| status: partner | ||
| --- | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it's not a lot of work, could you drop a screenshot or mock of what the page should looks like with just the bare minimum frontmatter filled out?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are they a partner? Shouldn't this be like
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, updated the field, and I'll make a quick mockup tomorrow morning. |
||
Uh oh!
There was an error while loading. Please reload this page.