Hibernate Clusters Daily #16765
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: Hibernate Clusters Daily | |
run-name: Hibernate Clusters Daily | |
on: | |
schedule: | |
- cron: '*/30 * * * *' | |
workflow_dispatch: | |
jobs: | |
hibernate-clusters: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Setup OCM CLI | |
env: | |
OCM_TOKEN: ${{ secrets.OCM_TOKEN }} | |
run: | | |
cp bin/ocm /usr/local/bin/ocm | |
chmod +x /usr/local/bin/ocm | |
ocm login --token="${OCM_TOKEN}" | |
ocm list clusters | |
- name: Hibernate Clusters | |
env: | |
OCM_TOKEN: ${{ secrets.OCM_TOKEN }} | |
SMARTSHEET_ACCESS_TOKEN: ${{ secrets.SMARTSHEET_ACCESS_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUD_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUD_SECRET }} | |
run: | | |
python src/hibernate_clusters_daily.py |