From 78a7ca319bc33c3c7187bc011414554d64f63a5a Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:21:29 +0000 Subject: [PATCH 1/3] ci: add explicit permissions for workflow jobs --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b426a9..3d3ea11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,11 @@ on: pull_request: branches: [ master ] +permissions: + contents: read + checks: write + pull-requests: write + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true From a85a109c174278e26ada95278d0ef1b67ba1f1b0 Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:24:24 +0000 Subject: [PATCH 2/3] ci: add status check job to debug workflow execution --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d3ea11..8b3739f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,19 @@ concurrency: cancel-in-progress: true jobs: + # Status check - always runs + status-check: + name: Workflow Status + runs-on: ubuntu-latest + steps: + - name: Workflow started + run: echo "✅ CI workflow is running" + # Quick validation - fail fast on obvious issues validate: name: Quick Validation runs-on: ubuntu-latest + needs: status-check steps: - name: Checkout code From b0ff5e538072bf4940469f130baa8a7b41a90937 Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:24:39 +0000 Subject: [PATCH 3/3] test: add minimal workflow to test GitHub Actions execution --- .github/workflows/test-simple.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/test-simple.yml diff --git a/.github/workflows/test-simple.yml b/.github/workflows/test-simple.yml new file mode 100644 index 0000000..762c7b9 --- /dev/null +++ b/.github/workflows/test-simple.yml @@ -0,0 +1,14 @@ +name: Simple Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + simple: + runs-on: ubuntu-latest + steps: + - name: Echo test + run: echo "Hello from GitHub Actions"