ci: Use correct push path to trigger pushing strings
This commit is contained in:
parent
3d32cca9cf
commit
b8e52e8063
4
.github/workflows/open_pull_request.yml
vendored
4
.github/workflows/open_pull_request.yml
vendored
|
@ -20,8 +20,8 @@ jobs:
|
||||||
- name: Open pull request
|
- name: Open pull request
|
||||||
uses: repo-sync/pull-request@v2
|
uses: repo-sync/pull-request@v2
|
||||||
with:
|
with:
|
||||||
destination_branch: 'main'
|
destination_branch: "main"
|
||||||
pr_title: 'chore: ${{ env.MESSAGE }}'
|
pr_title: "chore: ${{ env.MESSAGE }}"
|
||||||
pr_body: |
|
pr_body: |
|
||||||
This pull request will ${{ env.MESSAGE }}.
|
This pull request will ${{ env.MESSAGE }}.
|
||||||
|
|
||||||
|
|
3
.github/workflows/push_strings.yml
vendored
3
.github/workflows/push_strings.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- dev
|
- dev
|
||||||
paths:
|
paths:
|
||||||
- /src/main/resources/addresources/values/strings.xml
|
- src/main/resources/addresources/values/strings.xml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
push:
|
push:
|
||||||
|
@ -17,7 +17,6 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ref: dev
|
|
||||||
|
|
||||||
- name: Push strings
|
- name: Push strings
|
||||||
uses: crowdin/github-action@v1
|
uses: crowdin/github-action@v1
|
||||||
|
|
Loading…
Reference in a new issue