Add build for targets and PR creation to the update-automation workflow #249
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: GitSecretsScan | |
on: [push, pull_request] | |
jobs: | |
git-secret-check: | |
name: Git Secrets Scan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: aws/code-editor | |
- name: Git Secrets Scan Script | |
run: | | |
set -ex | |
cd $GITHUB_WORKSPACE | |
git clone https://github.com/awslabs/git-secrets.git && cd git-secrets | |
sudo make install | |
git secrets --register-aws --global | |
cd $GITHUB_WORKSPACE/aws/code-editor | |
git secrets --scan-history |