Skip to content

Commit 305d246

Browse files
committed
Merge branch 'fix-homepage-container-flexibility' of https://github.com/OUMIMANDAL/Nest-milestones into fix-homepage-container-flexibility
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
2 parents 026ee9a + 7e7c88e commit 305d246

File tree

82 files changed

+5051
-1126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+5051
-1126
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
# https://help.github.com/en/articles/about-code-owners
55

66
* @arkid15r
7+
/cspell/ @arkid15r @kasya
78
/frontend/ @arkid15r @kasya

.github/workflows/run-code-ql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@76621b61decf072c1cee8dd1ce2d2a82d33c17ed
32+
uses: github/codeql-action/init@96f518a34f7a870018057716cc4d7a5c014bd61c
3333
with:
3434
languages: ${{ matrix.language }}
3535

@@ -53,6 +53,6 @@ jobs:
5353
run: pnpm install --frozen-lockfile
5454

5555
- name: Perform CodeQL analysis
56-
uses: github/codeql-action/analyze@76621b61decf072c1cee8dd1ce2d2a82d33c17ed
56+
uses: github/codeql-action/analyze@96f518a34f7a870018057716cc4d7a5c014bd61c
5757
with:
5858
category: /language:${{ matrix.language }}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ __pycache__
1616
.python_history
1717
.python-version
1818
.ruff_cache
19+
.venv/
1920
.vscode
20-
venv/
2121
*.code-workspace
2222
*.key
2323
*.log
2424
*.pdf
2525
*.pem
26-
backend/.venv
2726
backend/data/backup*
2827
backend/staticfiles
2928
frontend/blob-report/
@@ -39,3 +38,4 @@ frontend/yarn-error.log*
3938
logs
4039
node_modules/
4140
TODO
41+
venv/

.pre-commit-config.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
exclude: (.github|pnpm-lock.yaml)
1111

1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.12.8
13+
rev: v0.12.9
1414
hooks:
1515
- id: ruff
1616
args:
@@ -80,3 +80,8 @@ repos:
8080
files: backend/tests
8181
- id: trailing-whitespace
8282
exclude: pnpm-lock.yaml
83+
84+
- repo: https://github.com/tox-dev/pyproject-fmt
85+
rev: v2.6.0
86+
hooks:
87+
- id: pyproject-fmt

backend/README.md

Whitespace-only changes.

backend/apps/github/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ github-enrich-issues:
66
@echo "Enriching GitHub issues"
77
@CMD="python manage.py github_enrich_issues" $(MAKE) exec-backend-command
88

9-
github-match-users:
10-
@CMD="python manage.py github_match_users $(MATCH_MODEL)" $(MAKE) exec-backend-command
11-
129
github-update-owasp-organization:
1310
@echo "Updating OWASP GitHub organization"
1411
@CMD="python manage.py github_update_owasp_organization" $(MAKE) exec-backend-command

backend/apps/github/api/internal/nodes/issue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url",
1717
],
1818
)
19-
class IssueNode:
19+
class IssueNode(strawberry.relay.Node):
2020
"""GitHub issue node."""
2121

2222
@strawberry.field

backend/apps/github/api/internal/nodes/milestone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"url",
2020
],
2121
)
22-
class MilestoneNode:
22+
class MilestoneNode(strawberry.relay.Node):
2323
"""Github Milestone Node."""
2424

2525
@strawberry.field

backend/apps/github/api/internal/nodes/organization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class OrganizationStatsNode:
3636
"updated_at",
3737
],
3838
)
39-
class OrganizationNode:
39+
class OrganizationNode(strawberry.relay.Node):
4040
"""GitHub organization node."""
4141

4242
@strawberry.field

backend/apps/github/api/internal/nodes/pull_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"title",
1515
],
1616
)
17-
class PullRequestNode:
17+
class PullRequestNode(strawberry.relay.Node):
1818
"""GitHub pull request node."""
1919

2020
@strawberry.field

0 commit comments

Comments
 (0)