From 8a9a92db46341054556ef348b722e8dc3bdecefd Mon Sep 17 00:00:00 2001 From: Adam Cutler Date: Fri, 16 Jun 2023 11:16:03 -0400 Subject: [PATCH] ci: auto patch-release every 2 weeks (#751) --- .github/workflows/auto-patch-release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-patch-release.yml diff --git a/.github/workflows/auto-patch-release.yml b/.github/workflows/auto-patch-release.yml new file mode 100644 index 00000000..2cd99e04 --- /dev/null +++ b/.github/workflows/auto-patch-release.yml @@ -0,0 +1,13 @@ +name: Automatically create patch release every 2 weeks +on: + schedule: + # Run every Friday right before midnight + - cron: '59 23 * * 5' +jobs: + create_patch_release: + uses: dequelabs/axe-api-team/.github/workflows/auto-patch-release.yml + secrets: inherit + with: + release-command: bash .github/scripts/prepare_release.sh + release-branch: master + default-branch: develop