diff --git a/.circleci/config.yml b/.circleci/config.yml index 5c2fe0bd9f..b370f0afd1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -415,6 +415,7 @@ workflows: branches: only: - /^chore\/.+$/ + - /test-all/ - master - test-windows: name: Acceptance Tests (snyk-win.exe) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ca91eb9b7f..ee56d575ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -174,13 +174,13 @@ git checkout -b docs/contributing ### Branch types -You can use these prefixes in your branch name to enable additional checks. +You can use these patterns in your branch name to enable additional checks. -| Prefix | Description | -| -------- | ------------------------------------------------------------------------------------------------------------ | -| `chore/` | Build and test all artifacts. Same as a [release pipeline](#creating-a-release) without the release step. | -| `smoke/` | Run [smoke tests](https://github.com/snyk/cli/actions/workflows/smoke-tests.yml) against the latest release. | -| default | Build and test your changes. | +| Pattern | Examples | Description | +| ----------------------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| `chore/*`, `*test-all*` | `chore/build-change`, `feat/my-feature+test-all` | Build and test all artifacts. Same as a [release pipeline](#creating-a-release) without the release step. | +| `smoke/*` | `smoke/test-change` | Run [smoke tests](https://github.com/snyk/cli/actions/workflows/smoke-tests.yml) against the latest release. | +| default | `fix/a-bug` | Build and test your changes. | For more information, see: [Pull request checks](#pull-request-checks).