Skip to content

Commit 999d8ee

Browse files
committed
chore: clean up comments and workflow trigger documentation across GitHub Actions workflows
1 parent c3587ec commit 999d8ee

4 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [main, dev]
88

99
jobs:
10-
# ── Job 1: Code Quality (runs in parallel with build) ──────────────────────
10+
1111
quality:
1212
name: Format · Lint · Typecheck · Test
1313
runs-on: ubuntu-latest
@@ -37,7 +37,7 @@ jobs:
3737
- name: Run Unit Tests (Vitest)
3838
run: npm run test
3939

40-
# ── Job 2: Production Build ─────────────────────────────────────────────────
40+
4141
build:
4242
name: Production Build
4343
runs-on: ubuntu-latest
@@ -58,5 +58,4 @@ jobs:
5858
- name: Build
5959
run: npm run build
6060
env:
61-
# Prevent Next.js from treating warnings as errors during CI build
6261
CI: false

.github/workflows/conflict-notifier.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: Merge Conflict Notifier
22

33
on:
44
schedule:
5-
# Runs every day at 00:00 UTC
65
- cron: '0 0 * * *'
7-
workflow_dispatch: # Allow manual trigger for testing
6+
workflow_dispatch:
87

98
permissions:
109
issues: write

.github/workflows/milestone-manager.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
- name: Assign to GSSoC 2026 Milestone
2121
uses: actions/github-script@v7
2222
env:
23-
# Update this to match your actual GSSoC 2026 milestone number.
24-
# Find it at: https://github.com/<owner>/<repo>/milestones
2523
MILESTONE_NUMBER: '1'
2624
with:
2725
script: |

.github/workflows/pr-template-enforcer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: PR Template Enforcer
33
on:
44
pull_request_target:
55
types: [opened, edited, reopened]
6-
workflow_dispatch: # Manually trigger to scan ALL open PRs
6+
workflow_dispatch:
77

88
permissions:
99
issues: write

0 commit comments

Comments
 (0)