From dd76d59a4785f75b359ce62e5ab54da4df292c71 Mon Sep 17 00:00:00 2001 From: Jagdish Prajapati Date: Sat, 16 May 2026 22:31:21 +0530 Subject: [PATCH] Consistant task names and template update --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/java.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d07adf074..e40a01958 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ -# pull request +# Pull Request diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 2e43b527a..867890a6c 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -12,7 +12,7 @@ on: jobs: build-all: - name: Check if tests compile cleanly with starter sources + name: Check if all exercise tests compile cleanly with starter sources if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' runs-on: ubuntu-24.04 steps: @@ -43,7 +43,7 @@ jobs: run: bin/build-changed-exercise lint-all: - name: Lint all Java files using Checkstyle + name: Lint all exercises using Checkstyle if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' runs-on: ubuntu-24.04 steps: @@ -58,7 +58,7 @@ jobs: working-directory: exercises lint-changed: - name: Lint changed Java exercises using Checkstyle + name: Lint changed exercises using Checkstyle if: github.event_name == 'pull_request' runs-on: ubuntu-24.04 steps: