Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b4eeebf
Run make update
arkid15r Jan 2, 2026
b5d1e4d
Bump globals from 16.5.0 to 17.0.0 in /frontend (#3138)
dependabot[bot] Jan 2, 2026
dfc2bf0
ci: move permissions to job level (#3118)
OM-JADHAV25 Jan 2, 2026
183970c
chore(deps): remove unused frontend dependencies (#3152)
SuyashJain17 Jan 2, 2026
53e8020
Update CONTRIBUTING.md w/ a workflow diagram (#3155)
arkid15r Jan 3, 2026
1d41170
Run make update
arkid15r Jan 3, 2026
3c0797d
Run make update
arkid15r Jan 4, 2026
92b8e33
Update frontend/src/app/page.tsx
arkid15r Jan 4, 2026
99d72e3
ci: add ZAP Baseline Scan to CI/CD pipeline (#3172)
OM-JADHAV25 Jan 4, 2026
0657599
CI hardening: pin GitHub Actions to SHAs and define explicit job perm…
SuyashJain17 Jan 4, 2026
155b3ea
Update cspell config
arkid15r Jan 4, 2026
3a34336
Update .github/workflows/run-ci-cd.yaml
arkid15r Jan 4, 2026
9c49a0f
Sort cspell/custom-dict.txt
arkid15r Jan 4, 2026
d594002
Fix headers.conf inclusion
arkid15r Jan 4, 2026
6413134
Run pre-commit
arkid15r Jan 4, 2026
4404843
Update CI/CD
arkid15r Jan 4, 2026
ef02093
feat: Add Contribution Heatmap to Chapter and Project Pages (#2674)
mrkeshav-05 Jan 4, 2026
24152a8
Extend Nest API `chapter` and `project` (#2606)
rudransh-shrivastava Jan 4, 2026
572877b
Update project description
arkid15r Jan 4, 2026
cafca7e
Update docker files location (#3112)
arkid15r Jan 5, 2026
f3e017d
Bump strawberry-graphql-django from 0.72.2 to 0.73.0 in /backend (#3193)
dependabot[bot] Jan 5, 2026
06c71f8
Merge branch 'main' into e2e/merge-update-2
ahmedxgouda Jan 5, 2026
087da35
Update docker compose, dump file and ci/cd
ahmedxgouda Jan 5, 2026
eb1bfa0
Update ci/cd
ahmedxgouda Jan 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ansible/production/nest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
ansible.builtin.command:
cmd: crontab /tmp/production_crontab

- name: Retart services
- name: Restart services
shell:
cmd: docker compose up -d --pull always

Expand Down
4 changes: 2 additions & 2 deletions .github/ansible/production/proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
dest: ~/docker-compose.yaml
mode: '0644'

- name: Retart services
- name: Restart services
shell:
cmd: docker compose up -d --pull always
cmd: docker compose up -d --pull always && docker compose restart

- name: Prune docker images
shell:
Expand Down
2 changes: 1 addition & 1 deletion .github/ansible/staging/nest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
ansible.builtin.command:
cmd: crontab /tmp/staging_crontab

- name: Retart services
- name: Restart services
shell:
cmd: docker compose up -d --pull always

Expand Down
4 changes: 2 additions & 2 deletions .github/ansible/staging/proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
dest: ~/docker-compose.yaml
mode: '0644'

- name: Retart services
- name: Restart services
shell:
cmd: docker compose up -d --pull always
cmd: docker compose up -d --pull always && docker compose restart

- name: Prune docker images
shell:
Expand Down
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: 2
updates:
- package-ecosystem: docker
directory: /backend/docker
directory: /docker/backend
schedule:
interval: daily

- package-ecosystem: docker
directory: /cspell
directory: /docker/cspell
schedule:
interval: daily

Expand All @@ -31,12 +31,12 @@ updates:
interval: daily

- package-ecosystem: docker
directory: /docs/docker
directory: /docker/docs
schedule:
interval: daily

- package-ecosystem: docker
directory: /frontend/docker
directory: /docker/frontend
schedule:
interval: daily

Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/check-pr-issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ on:
types:
- opened

permissions:
contents: read
issues: read
pull-requests: write

jobs:
check-pr-issue:
permissions:
contents: read
issues: read
pull-requests: write
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/label-issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ on:
- edited
- opened

permissions:
issues: write

jobs:
label:
permissions:
issues: write
runs-on: ubuntu-latest
steps:
- name: Apply Labels to Issues
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/label-pull-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ name: Label Pull Requests
on:
- pull_request_target

permissions:
contents: read
pull-requests: write

jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b
Expand Down
Loading