feat: Add Semantic-Release workflow #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow check pull-requests commit message validity | |
name: "Check Commit message for Semantic validity" | |
on: | |
# this workflow triggers only on Pull Requests | |
pull_request: | |
branches: [ master, beta, dev ] | |
types: [ opened, reopened, synchronize, edited ] | |
jobs: | |
# one single job, import from jeedom/workflows | |
checkCommit: | |
# https://github.com/jeedom/workflows/blob/main/.github/workflows/checkCommit.yml | |
uses: jeedom/workflows/.github/workflows/checkCommit.yml@main |