Skip to content

Commit a35e653

Browse files
committed
fix: update dev branch references to main
- Study detail "View on GitHub" link: tree/dev → tree/main - Workflows: remove dev from branch triggers (dev branch no longer exists) Made-with: Cursor
1 parent c8ab7b2 commit a35e653

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/sync-studies-index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Sync studies index
22
on:
33
push:
4-
branches: [dev, main]
4+
branches: [main]
55
paths:
66
- "studies/**"
77
- "scripts/build_studies_index.py"

.github/workflows/validate-studies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Validate studies
22
on:
33
pull_request:
4-
branches: [dev, main]
4+
branches: [main]
55
paths:
66
- "studies/**"
77
- "scripts/build_studies_index.py"

co_website/app/studies/[studyId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default async function StudyDetailPage({
7070

7171
<div className="flex flex-wrap gap-4">
7272
<a
73-
href={`https://github.com/AISmithLab/HumanStudy-Bench/tree/dev/studies/${study.study_id}`}
73+
href={`https://github.com/AISmithLab/HumanStudy-Bench/tree/main/studies/${study.study_id}`}
7474
target="_blank"
7575
rel="noopener noreferrer"
7676
className="inline-flex items-center gap-2 rounded-md bg-cyan-600 px-4 py-2 text-sm font-semibold text-white shadow-sm hover:bg-cyan-500 transition-colors"

0 commit comments

Comments
 (0)