diff options
| author | ST-DDT <[email protected]> | 2024-11-21 22:57:20 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-11-21 22:57:20 +0100 |
| commit | 4436a77af23b9fdec575dbe447aef8184012ed25 (patch) | |
| tree | 0a4359a18626cd4abeb3b73a0fd330158a7b257d /.github/workflows | |
| parent | b0a5ad38bb6e516ba4a6776342c0bb389ca17363 (diff) | |
| download | faker-4436a77af23b9fdec575dbe447aef8184012ed25.tar.xz faker-4436a77af23b9fdec575dbe447aef8184012ed25.zip | |
infra(CI): skip required CI steps in merge_queues (#3265)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/check-mergable-by-label.yml | 1 | ||||
| -rw-r--r-- | .github/workflows/semantic-pull-request.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/check-mergable-by-label.yml b/.github/workflows/check-mergable-by-label.yml index d91d72c6..2e36582e 100644 --- a/.github/workflows/check-mergable-by-label.yml +++ b/.github/workflows/check-mergable-by-label.yml @@ -16,6 +16,7 @@ permissions: {} jobs: fail-by-blocking-label: runs-on: ubuntu-latest + if: ${{ github.event_name != 'merge_group' }} steps: - name: Check for blocking labels run: | diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index 892774f5..182b02fc 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -19,6 +19,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 name: Semantic Pull Request + if: ${{ github.event_name != 'merge_group' }} steps: - name: Validate PR title uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3 |
