diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 892b9d675..614960547 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -1,9 +1,10 @@ name: CI/CD on: - workflow_dispatch: # Allows you to run this workflow manually from the Actions tab pull_request: # Runs whenever a pull request is created or updated - push: # Runs whenever a commit is pushed to the repository + push: # Runs whenever a commit is pushed to the repository... + branches: [main, develop, hotfix/*] # ...on any of these branches + workflow_dispatch: # Allows you to run this workflow manually from the Actions tab concurrency: group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'