From b19c5268270dbe9621dfa638df63b1a9af0fe8b2 Mon Sep 17 00:00:00 2001 From: Olha Kramarenko Date: Fri, 11 Sep 2026 13:31:03 +0300 Subject: [PATCH] Check public readiness --- .github/public-release-request.yml | 4 ++++ .github/workflows/public-readiness.yml | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .github/public-release-request.yml create mode 100644 .github/workflows/public-readiness.yml diff --git a/.github/public-release-request.yml b/.github/public-release-request.yml new file mode 100644 index 000000000..1225b1e50 --- /dev/null +++ b/.github/public-release-request.yml @@ -0,0 +1,4 @@ +business_justification: > + A driver, confirming it contains no proprietary SingleStore information. +license: MIT +primary_contact: okramarenko diff --git a/.github/workflows/public-readiness.yml b/.github/workflows/public-readiness.yml new file mode 100644 index 000000000..8c620d63a --- /dev/null +++ b/.github/workflows/public-readiness.yml @@ -0,0 +1,11 @@ +# .github/workflows/public-readiness.yml +on: + pull_request: + paths: ['.github/public-release-request.yml'] +permissions: # add this block + contents: read # add this block + pull-requests: write # add this block +jobs: + readiness: + uses: singlestore/securitytesting/.github/workflows/public-readiness.yml@main + secrets: inherit