From e4015bfce4983541db65bb24c561bc87076e4307 Mon Sep 17 00:00:00 2001 From: Aletia Trepte <38143160+parcheesime@users.noreply.github.com> Date: Thu, 4 Apr 2024 18:43:56 -0700 Subject: [PATCH] Create release.yaml - Create the release.yaml file in the correct directory. - Trigger the workflow on pull requests merged into the stable branch. --- .github/workflows/release.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..b06f4ddb --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,14 @@ +name: Release Workflow + +on: + push: + branches: + - stable + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + # more to come