From 1379d71bd4125800a92521ba4b7f89835dd1e9bf Mon Sep 17 00:00:00 2001 From: Colin Neilens Date: Mon, 14 Sep 2026 12:58:34 -0700 Subject: [PATCH] Register Windows validation workflows Add safe default-branch dispatch stubs so the full Windows workflow definitions can be run against the port branch before integration. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/windows-hardening.yml | 13 +++++++++++++ .github/workflows/windows-port-validation.yml | 13 +++++++++++++ .github/workflows/windows-shell.yml | 13 +++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 .github/workflows/windows-hardening.yml create mode 100644 .github/workflows/windows-port-validation.yml create mode 100644 .github/workflows/windows-shell.yml diff --git a/.github/workflows/windows-hardening.yml b/.github/workflows/windows-hardening.yml new file mode 100644 index 00000000..3b5f9951 --- /dev/null +++ b/.github/workflows/windows-hardening.yml @@ -0,0 +1,13 @@ +name: Windows release hardening + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + registration: + runs-on: ubuntu-latest + steps: + - run: echo "Dispatch this workflow with a ref that contains the Windows hardening implementation." diff --git a/.github/workflows/windows-port-validation.yml b/.github/workflows/windows-port-validation.yml new file mode 100644 index 00000000..3c7010a0 --- /dev/null +++ b/.github/workflows/windows-port-validation.yml @@ -0,0 +1,13 @@ +name: Windows port validation + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + registration: + runs-on: ubuntu-latest + steps: + - run: echo "Dispatch this workflow with a ref that contains the Windows port implementation." diff --git a/.github/workflows/windows-shell.yml b/.github/workflows/windows-shell.yml new file mode 100644 index 00000000..7e5f053b --- /dev/null +++ b/.github/workflows/windows-shell.yml @@ -0,0 +1,13 @@ +name: Windows shell validation + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + registration: + runs-on: ubuntu-latest + steps: + - run: echo "Dispatch this workflow with a ref that contains the Windows shell implementation."