diff --git a/.github/workflows/branch-protection.yml b/.github/workflows/branch-protection.yml index d03d089..f1baedf 100644 --- a/.github/workflows/branch-protection.yml +++ b/.github/workflows/branch-protection.yml @@ -2,9 +2,6 @@ name: Branch Protection on: workflow_call -# This workflow can be added used to allow merging to branch "main" only if -# the workflow has been executed successfully. - jobs: branch-protection-job: runs-on: ubuntu-latest diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 855a93d..e208195 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: needs: [ ci-job ] uses: ./.github/workflows/report.yml + gate-1-regular-ci: name: Gate 1 (Regular CI) needs: [ ci-job ] diff --git a/doc/developer_guide/developer_guide.md b/doc/developer_guide/developer_guide.md index 0bcde2b..bbe2849 100644 --- a/doc/developer_guide/developer_guide.md +++ b/doc/developer_guide/developer_guide.md @@ -72,7 +72,7 @@ Executing the integration tests requires the following environment variables to Some of the test cases verify connecting to a SaaS database instance and execution will take about 20 minutes. -These test cases are disabled by default and will only be executed when your PR has the label `slow-tests`. +These test cases are disabled by default and will only be executed by adding a comment `[run-slow-tests]` to your pull request. ## Creating a Release