Add branding customization support for logo and title #1075
Workflow file for this run
This file contains hidden or 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: Deny cdk.context.json | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check-cdk-context: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Check for cdk.context.json | |
| run: | | |
| if [ -f "packages/cdk/cdk.context.json" ]; then | |
| echo "cdk.context.json file found in the PR. This is not allowed." | |
| exit 1 | |
| fi |