Merge 2d4aee8aa35597ec5c9c53a529076b3a24b72c9e into 7b4a3368c8d22265e… #2721
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mock Status Checks | |
on: | |
push: | |
branches: | |
- protected | |
- non_protected | |
- 'push-action/**' | |
jobs: | |
mock_status_check: | |
runs-on: ubuntu-latest | |
name: Mock Status Check | |
steps: | |
- name: Important status check | |
run: echo "Very important status check - SUCCESS!" | |
another_mock_status_check: | |
runs-on: ubuntu-latest | |
name: Another Mock Status Check | |
steps: | |
- name: Important status check | |
run: echo "Very important status check - SUCCESS!" | |
skipped_mock_status_check: | |
runs-on: ubuntu-latest | |
name: Skipped Mock Status Check | |
if: ${{ !always() }} | |
steps: | |
- name: Skipped status check | |
run: echo "Very important skipped status check - here for --acceptable-conclusion testing - SKIPPED!" | |
another_skipped_mock_status_check: | |
runs-on: ubuntu-latest | |
name: Another Skipped Mock Status Check | |
if: ${{ !always() }} | |
steps: | |
- name: Skipped status check | |
run: echo "Very important skipped status check - here for --fail-fast testing - SKIPPED!" |