Skip to content

Commit

Permalink
feat: add activity-tracker project (#33)
Browse files Browse the repository at this point in the history
* feat: add  activity-tracker project

* fix: update github username validator regex
  • Loading branch information
morgan-cromell authored Apr 11, 2024
1 parent d21e24b commit dc3b9da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions projects/activity-tracker/info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
owners:
- morgan-cromell
- indrif
- H4zze
- bjornkonrad
2 changes: 2 additions & 0 deletions projects/activity-tracker/staging.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
buckets: []
databases: []
2 changes: 1 addition & 1 deletion scripts/lib/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const schemaProjectName = Joi.string()
.lowercase()
.invalid("index"); // index is reserved
export const schemaGithubUsername = Joi.string()
.regex(/^[a-z0-9\-\_\.]+$/)
.regex(/^[A-z0-9\-\_\.]+$/)
.min(1)
.max(38)
.required();
Expand Down

0 comments on commit dc3b9da

Please sign in to comment.