Titan Image Generator v2の新機能対応 #223
This file contains 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 |