This commit is contained in:
Sergei Garin 2024-11-21 16:09:44 +03:00
parent 3fa3bf139f
commit 75c0ba3f34
No known key found for this signature in database

View File

@ -22,7 +22,7 @@ permissions:
jobs:
changed-files:
runs-on: ubuntu-latest
name: 🔍 Detect changed files in GUI
name: 🔍 GUI files changed
outputs:
all_changed_files: ${{ steps.changed-files.outputs.all_changed_files }}
any_changed: ${{ steps.changed-files.outputs.any_changed }}
@ -86,7 +86,7 @@ jobs:
# This job is used to report success if the needed jobs were successful.
# This is a workaround to make optional jobs required if they run
report-success:
name: Success or skipped due to no changes
name: GUI Checks Success or Skipped
runs-on: ubuntu-latest
needs: [checks, storybook]
if: always() && (needs.checks.result == 'skipped' && needs.storybook.result == 'skipped') || (needs.checks.result == 'success' && needs.storybook.result == 'success')