Skip to content

Commit

Permalink
[PR #6185/15f4411d backport][3.8] Add a no-op checking job to GHA (#6186
Browse files Browse the repository at this point in the history
)

(cherry picked from commit 15f4411)

Co-authored-by: Sviatoslav Sydorenko <sviat@redhat.com>
  • Loading branch information
patchback[bot] and webknjaz committed Oct 31, 2021
1 parent 208a4eb commit c61395f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -174,10 +174,22 @@ jobs:
# flags: unit
# fail_ci_if_error: false

check: # This job does nothing and is only used for the branch protection
needs:
- test

runs-on: ubuntu-latest

steps:
- name: Report success of the test matrix
run: >-
print("All's good")
shell: python

pre-deploy:
name: Pre-Deploy
runs-on: ubuntu-latest
needs: test
needs: check
# Run only on pushing a tag
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
Expand Down

0 comments on commit c61395f

Please sign in to comment.