We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd96987 commit 28dd309Copy full SHA for 28dd309
1 file changed
.github/workflows/test.yml
@@ -193,4 +193,5 @@ jobs:
193
token: ${{ secrets.CODECOV_TOKEN }}
194
- name: Update .pot files
195
run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }}
196
- if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'openspp' }}
+ # Only update POT files when pushing to the canonical 17.0 branch in org repo.
197
+ if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'openspp' && startsWith(github.ref, 'refs/heads/17.0') }}
0 commit comments