Skip to content

Merge d64eb09a92dc5f4e4958e059c0b3acfc672d3f74 into 5fb4d7cdc95fccd2d… #2530

Merge d64eb09a92dc5f4e4958e059c0b3acfc672d3f74 into 5fb4d7cdc95fccd2d…

Merge d64eb09a92dc5f4e4958e059c0b3acfc672d3f74 into 5fb4d7cdc95fccd2d… #2530

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!"