Skip to content

Commit 3de32bb

Browse files
committed
Fix lint
Signed-off-by: Rashid Kaleem <230885705+arekay-nv@users.noreply.github.com>
1 parent f74406c commit 3de32bb

4 files changed

Lines changed: 180 additions & 181 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These owners will be the default owners for everything in the repo.
22
# Unless a later match takes precedence,they will be requested for review when someone opens a pull request.
3-
* @mlcommons/endpoints-developers
3+
* @mlcommons/endpoints-developers
44

55
/.github/CODEOWNERS @mlcommons/systems
66

.github/workflows/cla.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
21
name: "cla-bot"
32
on:
43
issue_comment:
54
types: [created]
65
pull_request_target:
7-
types: [opened,closed,synchronize]
6+
types: [opened, closed, synchronize]
87

98
jobs:
109
cla-check:
@@ -17,16 +16,16 @@ jobs:
1716
env:
1817
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1918
# the below token should have repo scope and must be manually added by you in the repository's secret
20-
PERSONAL_ACCESS_TOKEN : ${{ secrets.MLCOMMONS_BOT_CLA_TOKEN }}
19+
PERSONAL_ACCESS_TOKEN: ${{ secrets.MLCOMMONS_BOT_CLA_TOKEN }}
2120
with:
22-
path-to-signatures: 'cla-bot/v1/cla.json'
21+
path-to-signatures: "cla-bot/v1/cla.json"
2322
# branch should not be protected
24-
branch: 'main'
23+
branch: "main"
2524
allowlist: user1,bot*
2625
remote-organization-name: mlcommons
2726
remote-repository-name: systems
28-
29-
#below are the optional inputs - If the optional inputs are not given, then default values will be taken
27+
28+
#below are the optional inputs - If the optional inputs are not given, then default values will be taken
3029
#remote-organization-name: enter the remote organization name where the signatures should be stored (Default is storing the signatures in the same repository)
3130
#remote-repository-name: enter the remote repository name where the signatures should be stored (Default is storing the signatures in the same repository)
3231
#create-file-commit-message: 'For example: Creating file for storing CLA Signatures'

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25+
pip install -e .
2526
pip install pre-commit
2627
2728
- name: Run pre-commit

0 commit comments

Comments
 (0)