From 92945172bbaf0f14e9a0d6b7622eee23eb65b325 Mon Sep 17 00:00:00 2001 From: Mika Ayenson Date: Thu, 27 Apr 2023 10:03:56 -0400 Subject: [PATCH] add base of workflow (#2762) --- .github/workflows/release-docs.yml | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/release-docs.yml diff --git a/.github/workflows/release-docs.yml b/.github/workflows/release-docs.yml new file mode 100644 index 000000000..abb981811 --- /dev/null +++ b/.github/workflows/release-docs.yml @@ -0,0 +1,36 @@ +name: Release Docs + +on: + workflow_dispatch: + inputs: + target_branch: + description: 'Target branch for PR base' + required: true + default: 'main' + draft: + type: choice + description: 'Create a PR as draft' + required: true + options: + - "yes" + - "no" + update_message: + description: 'Update status message for the latest package' + required: true + pre_version: + description: 'Previous version' + required: true + post_version: + description: 'Post version' + required: true + +jobs: + build-docs: + name: Prepare Docs + runs-on: ubuntu-latest + steps: + - name: Checkout detection-rules + uses: actions/checkout@v3 + with: + path: detection-rules + fetch-depth: 0 \ No newline at end of file