From d11c23fe935b29f1e9b151711ca2a902755e730d Mon Sep 17 00:00:00 2001 From: AdnoC Date: Wed, 14 Jun 2023 10:31:36 -0400 Subject: [PATCH] ci: auto patch-release every 2 weeks --- .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