Skip to content

Commit 04d4568

Browse files
Copilotpelikhan
andauthored
Exclude dispatcher pages from curriculum quality index (#1721)
* Initial plan * feat: exclude dispatcher pages from curriculum quality index - Add <!-- learning:false --> to workshop/01-prerequisites.md - Pass learning_only=True to sorted_workshop_files() in curriculum-evaluator.md - Recompile curriculum-evaluator.lock.yml Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 8bdbca2 commit 04d4568

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/curriculum-evaluator.lock.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/curriculum-evaluator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ steps:
4141
sys.path.insert(0, str(pathlib.Path('.github/skills/curriculum-quantitative-assessment').resolve()))
4242
from curriculum_assessment import score_workshop_file, sorted_workshop_files
4343
44-
entries = [score_workshop_file(path) for path in sorted_workshop_files('workshop')]
44+
entries = [score_workshop_file(path) for path in sorted_workshop_files('workshop', learning_only=True)]
4545
4646
pathlib.Path('/tmp/gh-aw/data/corpus-metrics.json').write_text(
4747
json.dumps({'files': entries, 'total': len(entries)}, indent=2)

workshop/01-prerequisites.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!-- page-journey: all -->
22
<!-- page-adventure: core -->
3+
<!-- learning:false -->
34

45
# Before we start
56

0 commit comments

Comments
 (0)