Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
33 lines
929 B
YAML
33 lines
929 B
YAML
# This workflow is a workaround for ci.yml to bypass the github checks
|
|
#
|
|
# Ref: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
|
|
name: CI Check
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
# should sync with ci.yml as a workaround to bypass github checks
|
|
- master
|
|
- next
|
|
- v*.x
|
|
pull_request:
|
|
paths:
|
|
# should sync with ci.yml as a workaround to bypass github checks
|
|
- 'docs/**'
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
continuous-releases:
|
|
name: Continuous releases
|
|
uses: mui/mui-public/.github/workflows/ci-base.yml@master
|
|
|
|
test-dev:
|
|
if: ${{ github.actor != 'l10nbot' }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
steps:
|
|
- run: 'echo "No build required"'
|