From 666f8e84aae064ea202fe763526eda1e2d046713 Mon Sep 17 00:00:00 2001 From: Noel Chiasson Date: Mon, 13 May 2024 11:28:55 -0300 Subject: [PATCH] Adding workflows --- .github/workflows/lint.yml | 11 +++++++++++ .github/workflows/semver.yml | 12 ++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/workflows/lint.yml create mode 100644 .github/workflows/semver.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..091b703 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,11 @@ +--- +name: Code Linting +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + Lint: + uses: discoverygarden/CodeSniffer/.github/workflows/lint.yml@v1 diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml new file mode 100644 index 0000000..7a9c768 --- /dev/null +++ b/.github/workflows/semver.yml @@ -0,0 +1,12 @@ +--- +name: Semantic Version Tagging +on: + pull_request_target: + types: closed + branches: + - main + +jobs: + tag_update: + name: Tag Update + uses: discoverygarden/auto-semver/.github/workflows/semver.yml@v1