From d9656e83029e09ff26b20ed0f6a96abc7398ddcc Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Wed, 18 Sep 2024 11:54:36 -0400 Subject: [PATCH] ci: use semantic release workflow --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e422b62 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CAPE Org CI/CD +on: + push: + branches: [main] + pull_request_target: + types: [opened, edited, synchronize] + +permissions: + contents: write + pull-requests: write + +jobs: + Release: + uses: cape-ph/.github/.github/workflows/semantic_release.yml@main + secrets: inherit + with: + name: "CAPE Org Utilities" + is_production: ${{ github.event_name == 'push' }}