Infrastructure as Code CLI alert #13321
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: Infrastructure as Code CLI alert | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
jobs: | |
check_tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/iac-cli-alert | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.19.1' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm start | |
env: | |
USER_GITHUB_TOKEN: ${{ secrets.USER_GITHUB_TOKEN }} | |
IAC_SMOKE_TESTS_SLACK_WEBHOOK_URL: ${{ secrets.IAC_SMOKE_TESTS_SLACK_WEBHOOK_URL }} |