Skip to content

Add failing CI to check PR #1

Add failing CI to check PR

Add failing CI to check PR #1

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
changes:
runs-on: ubuntu-latest
outputs:
style: ${{ steps.filter.outputs.style }}
security: ${{ steps.filter.outputs.security }}
unit-tests: ${{ steps.filter.outputs.unit-tests }}
container: ${{ steps.filter.outputs.container }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # @v2
if: ${{ github.event_name == 'push' }}
with:
fetch-depth: 0
- run: |
exit 1