CI: Fix ignore pattern & highlight status of translation automations (#4977)
* Add result of run to GHA summary * Fix `paths-ignore`
This commit is contained in:
parent
203e916a07
commit
7c1095ea50
3 changed files with 7 additions and 7 deletions
2
.github/workflows/desktop-build.yml
vendored
2
.github/workflows/desktop-build.yml
vendored
|
@ -16,7 +16,7 @@ on:
|
||||||
- '**.md'
|
- '**.md'
|
||||||
- 'webclient/**'
|
- 'webclient/**'
|
||||||
- '.github/workflows/web-*.yml'
|
- '.github/workflows/web-*.yml'
|
||||||
- '.github/workflows/translations.yml'
|
- '.github/workflows/translations-*.yml'
|
||||||
|
|
||||||
# Cancel earlier, unfinished runs of this workflow on the same branch (unless on master)
|
# Cancel earlier, unfinished runs of this workflow on the same branch (unless on master)
|
||||||
concurrency:
|
concurrency:
|
||||||
|
|
6
.github/workflows/translations-pull.yml
vendored
6
.github/workflows/translations-pull.yml
vendored
|
@ -65,8 +65,8 @@ jobs:
|
||||||
STATUS: ${{ steps.create_pr.outputs.pull-request-operation }}
|
STATUS: ${{ steps.create_pr.outputs.pull-request-operation }}
|
||||||
run: |
|
run: |
|
||||||
if [[ "$STATUS" == "" ]]; then
|
if [[ "$STATUS" == "" ]]; then
|
||||||
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} unchanged!"
|
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} unchanged!" >> "$GITHUB_OUTPUT"
|
||||||
else
|
else
|
||||||
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!"
|
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!" >> "$GITHUB_OUTPUT"
|
||||||
fi
|
fi
|
||||||
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}"
|
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
6
.github/workflows/translations-push.yml
vendored
6
.github/workflows/translations-push.yml
vendored
|
@ -80,8 +80,8 @@ jobs:
|
||||||
STATUS: ${{ steps.create_pr.outputs.pull-request-operation }}
|
STATUS: ${{ steps.create_pr.outputs.pull-request-operation }}
|
||||||
run: |
|
run: |
|
||||||
if [[ "$STATUS" == "" ]]; then
|
if [[ "$STATUS" == "" ]]; then
|
||||||
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} unchanged!"
|
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} unchanged!" >> "$GITHUB_OUTPUT"
|
||||||
else
|
else
|
||||||
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!"
|
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!" >> "$GITHUB_OUTPUT"
|
||||||
fi
|
fi
|
||||||
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}"
|
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
Loading…
Reference in a new issue