We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3b75e commit c84d401Copy full SHA for c84d401
.github/workflows/l10n.yml
@@ -34,7 +34,7 @@ env:
34
35
jobs:
36
L10N-MacOS:
37
- if: ${{ inputs.job_to_run == 'L10N-MacOS' || inputs.mac_installer_link }}
+ if: ${{ github.event_name == 'pull_request' || inputs.job_to_run == 'L10N-MacOS' || inputs.mac_installer_link }}
38
runs-on: macos-latest
39
steps:
40
- name: Create app token
@@ -118,7 +118,7 @@ jobs:
118
name: artifacts-mac
119
path: artifacts-mac
120
L10N-Linux:
121
- if: ${{inputs.job_to_run == 'L10N-MacOS' || inputs.linux_tarball_link }}
+ if: ${{ github.event_name == 'pull_request' || inputs.job_to_run == 'L10N-MacOS' || inputs.linux_tarball_link }}
122
runs-on: ubuntu-latest
123
124
0 commit comments