From e4d9c25520f5c57ebad0efb6e9da0b15707bfad8 Mon Sep 17 00:00:00 2001 From: Khalifah Shabazz <619281+b01@users.noreply.github.com> Date: Sun, 1 Jun 2025 14:34:41 -0400 Subject: [PATCH] add: CI/CD Pipeline using Kohirens AVR Using the Kohirens AVR to automate the release process. --- .github/workflows/avr.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/avr.yml diff --git a/.github/workflows/avr.yml b/.github/workflows/avr.yml new file mode 100644 index 0000000..9c4c017 --- /dev/null +++ b/.github/workflows/avr.yml @@ -0,0 +1,23 @@ +name: auto-version-release + +on: + pull_request: + branches: [ main ] + types: [ closed ] + + +concurrency: + group: auto-release-group + cancel-in-progress: true + +run-name: ${{ github.actor }}'s close of PR ${{ github.ref_name }} has started the AVR workflow-selector + +jobs: + wf-selector: + uses: kohirens/version-release/.github/workflows/selector.yml@5.1.1 + name: workflow-selector + secrets: + github_write_token: ${{ secrets.GH_WRITE_TOKEN }} + with: + committer_email: 619281+b01@users.noreply.github.com + committer_name: Khalifah K Shabazz