Added network policy to 2 charts #135
Workflow file for this run
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: Check Missing Update Targets | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-missing-update-targets: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Make | |
run: sudo apt-get install make | |
- name: Run make list-missing-update-targets | |
id: check | |
run: | | |
OUTPUT=$(make list-missing-update-targets) | |
if [ -n "$OUTPUT" ]; then | |
echo "Missing update targets detected:" | |
echo "$OUTPUT" | |
exit 1 | |
fi |