There was an error while loading. Please reload this page.
2 parents 035434f + b0f8c7c commit 59433d7Copy full SHA for 59433d7
1 file changed
.github/workflows/make-pot.yml
@@ -8,11 +8,22 @@ on:
8
required: false
9
default: 'develop'
10
pull_request:
11
- branches:
12
- - develop
+ types:
+ - opened
13
+ - synchronize
14
+ - reopened
15
16
jobs:
17
make-pot:
18
+ if: |
19
+ github.event_name == 'workflow_dispatch' ||
20
+ (
21
+ github.event_name == 'pull_request' &&
22
23
+ startsWith(github.event.pull_request.title, 'automatic_translations_') ||
24
+ startsWith(github.event.pull_request.title, 'tm_edits_')
25
+ )
26
27
runs-on: ubuntu-latest
28
services:
29
mysql:
0 commit comments