Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <webknjaz@redhat.com>
  • Loading branch information
MaxymVlasov and webknjaz authored Feb 25, 2025
1 parent 8369cd1 commit 71e6a5a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ jobs:
# GitHub branch protection about which check is required when multiple
# events trigger this workflow.
name: >-
${{ github.event_name == 'push' && 'check&nbsp;' || 'check' }}
${{ github.event_name == 'push' && 'check&ZeroWidthSpace;' || 'check' }}
if: always()

needs:
Expand All @@ -531,4 +531,13 @@ jobs:
jobs: ${{ toJSON(needs) }}
# Needed to not fail on skipped 'push' events for the branches in
# upstream repository as they already covered by 'pull_request' event
allowed-skips: lint, tests
allowed-skips: >-
${{
(
github.repository_id != needs.pre-setup.outputs.upstream-repository-id
|| github.event_name != 'push'
|| github.ref_name == github.event.repository.default_branch
)
&& 'lint, tests'
|| ''
}}

0 comments on commit 71e6a5a

Please sign in to comment.