Skip to content

Commit 271df90

Browse files
authored
Correctly prevent the Docker build workflow from executing on CrowdIn PRs (#17795)
1 parent 0d02e1c commit 271df90

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build-docker-image.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ on:
77
branches:
88
- main
99
pull_request:
10-
branches-ignore:
11-
- translations
1210

1311
env:
1412
CI: true
1513

1614
jobs:
1715
build:
16+
# Do not run this job for translations PRs
17+
if: ${{ github.ref != 'refs/heads/translations' }}
18+
1819
runs-on: ubuntu-latest
1920
steps:
2021
- name: Check out repo

0 commit comments

Comments
 (0)