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:
tooomm 2024-01-22 22:07:21 +01:00 committed by GitHub
parent 203e916a07
commit 7c1095ea50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View file

@ -16,7 +16,7 @@ on:
- '**.md'
- 'webclient/**'
- '.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)
concurrency:

View file

@ -65,8 +65,8 @@ jobs:
STATUS: ${{ steps.create_pr.outputs.pull-request-operation }}
run: |
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
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!"
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!" >> "$GITHUB_OUTPUT"
fi
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}"
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}" >> "$GITHUB_OUTPUT"

View file

@ -80,8 +80,8 @@ jobs:
STATUS: ${{ steps.create_pr.outputs.pull-request-operation }}
run: |
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
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!"
echo "PR #${{ steps.create_pr.outputs.pull-request-number }} $STATUS!" >> "$GITHUB_OUTPUT"
fi
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}"
echo "URL: ${{ steps.create_pr.outputs.pull-request-url }}" >> "$GITHUB_OUTPUT"