check-resources #42
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-resources | |
on: | |
schedule: | |
- cron: "0 8 * * *" # every day at 8am | |
jobs: | |
check: | |
name: Check resources | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-2 # region doesn't matter for the cmd, just needs to be set | |
- name: Run | |
run: go run cmd/resourcecheck/main.go | |
env: | |
SLACK_API_TOKEN: ${{ secrets.SLACK_API_TOKEN }} |