Skip to content

Merge 785d301255535fcc8c27dd5ad27777708089688c into 71ce30e8d1a0724d8… #2171

Merge 785d301255535fcc8c27dd5ad27777708089688c into 71ce30e8d1a0724d8…

Merge 785d301255535fcc8c27dd5ad27777708089688c into 71ce30e8d1a0724d8… #2171

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