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