From ca6888cea171681f2811dac86782149efdb47bfc Mon Sep 17 00:00:00 2001 From: Aman Sharma Date: Fri, 28 Aug 2026 15:54:58 +0200 Subject: [PATCH] Replace presentation task with project for 2026 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit grading-criteria.md and README.md for 2026 no longer list "presentation" as a submittable task category — it's been replaced by "project" (a fixed Oct 10 deadline, no weekly seminar slot, per README.md). check_task.yml's path-validation regex, the PR labeler, and the PR template still only knew about the old six categories, so: - Any project submission failed check-affected-files with "File in wrong directory" since the regex had no project pattern. - The labeler and PR template still referenced presentation, which is no longer a valid category this year. --- .github/labeler.yml | 4 ++-- .github/pull_request_template.md | 4 ++-- .github/workflows/check_task.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index c21267deca..792f62bd11 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -10,9 +10,9 @@ feedback: - changed-files: - any-glob-to-any-file: 'contributions/feedback/**' -presentation: +project: - changed-files: - - any-glob-to-any-file: 'contributions/presentation/**' + - any-glob-to-any-file: 'contributions/project/**' scientific-paper: - changed-files: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c3811ff510..c6a07f95a4 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -19,7 +19,7 @@ _The title of your proposal_ _Selected deadline for the assignment_ -_If contribution is a **demo** or **presentation** or **scientific-paper** pick one of the following:_ +_If contribution is a **demo** or **scientific-paper** pick one of the following:_ - Week 2 - Week 3 - Week 4 @@ -38,7 +38,7 @@ _Category of your proposal_ _Pick one of the following:_ - Demo -- Presentation +- Project - Executable tutorial - Scientific paper - Open source diff --git a/.github/workflows/check_task.yml b/.github/workflows/check_task.yml index 21d37fb4fe..cb301554d0 100644 --- a/.github/workflows/check_task.yml +++ b/.github/workflows/check_task.yml @@ -43,9 +43,9 @@ jobs: echo "Error: More than one file affected ($FILES_COUNT)" exit 1 fi - if [[ "$FILES" =~ ^contributions\/(executable-tutorial|feedback|open-source)\/[^\/]+\/README\.md$ ]]; then + if [[ "$FILES" =~ ^contributions\/(executable-tutorial|feedback|open-source|project)\/[^\/]+\/README\.md$ ]]; then echo "Info: Matches async task" - elif [[ "$FILES" =~ ^contributions\/(demo|presentation|scientific-paper)\/week[2-7]\/[^\/]+\/README\.md$ ]]; then + elif [[ "$FILES" =~ ^contributions\/(demo|scientific-paper)\/week[2-7]\/[^\/]+\/README\.md$ ]]; then echo "Info: Matches sync task" else echo "Error: File in wrong directory ($FILES)"