diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..dd0261b --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,17 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-merge-conflict + + - repo: local + hooks: + - id: typescript-check + name: TypeScript type check + entry: npm run build + language: system + pass_filenames: false + files: \.(ts|tsx)$ diff --git a/src/config/repoAccess.ts b/src/config/repoAccess.ts index d6d348a..4af8c66 100644 --- a/src/config/repoAccess.ts +++ b/src/config/repoAccess.ts @@ -154,6 +154,7 @@ export const REPOSITORY_ACCESS: RepositoryAccess[] = [ repository: 'quickstart-resources', users: [ { username: 'jspahrsummers', permission: 'admin' }, + { username: 'a-akimov', permission: 'triage' }, ], teams: [ { team: 'auth-wg', permission: 'push' },