mirror of
https://github.com/nubenetes/awesome-kubernetes.git
synced 2026-07-28 09:32:20 +00:00
Bumps the action-updates group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [peter-evans/repository-dispatch](https://github.com/peter-evans/repository-dispatch). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `peter-evans/repository-dispatch` from 3 to 4 - [Release notes](https://github.com/peter-evans/repository-dispatch/releases) - [Commits](https://github.com/peter-evans/repository-dispatch/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-updates - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-updates - dependency-name: peter-evans/repository-dispatch dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-updates ... Signed-off-by: dependabot[bot] <support@github.com>
75 lines
2.2 KiB
YAML
75 lines
2.2 KiB
YAML
name: 02.2. V2 Health Monitor
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
force_full_check:
|
|
description: 'Force full re-validation (bypasses cache)'
|
|
type: boolean
|
|
default: false
|
|
restore_cache:
|
|
description: 'Restore inventory from cache (Warning: May overwrite recent manual changes)'
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: v2-health-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
run-health:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Repository Synchronization
|
|
uses: actions/checkout@v7
|
|
with:
|
|
ref: develop
|
|
|
|
- name: Python 3.11 Environment Provisioning
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
cache: 'pip'
|
|
|
|
- name: Restore Incremental Inventory Cache
|
|
if: ${{ github.event.inputs.restore_cache == 'true' }}
|
|
uses: actions/cache/restore@v6
|
|
with:
|
|
path: data/inventory.yaml
|
|
key: inventory-v2-${{ github.run_id }}-${{ github.run_attempt }}
|
|
restore-keys: |
|
|
inventory-v2-
|
|
|
|
- name: Installation of Dependencies
|
|
run: |
|
|
pip install --no-cache-dir pydantic PyGithub httpx fake-useragent pytz python-dotenv pyyaml tenacity
|
|
|
|
- name: Run V2 Health Monitor
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
FORCE_FULL_CHECK: ${{ github.event.inputs.force_full_check || 'false' }}
|
|
PYTHONPATH: ${{ github.workspace }}
|
|
PYTHONUNBUFFERED: "1"
|
|
run: python -u -m src.v2_health
|
|
|
|
- name: Create Pull Request for Health Update
|
|
uses: peter-evans/create-pull-request@v8
|
|
with:
|
|
branch: bot/v2-health-sync
|
|
base: develop
|
|
title: "V2 Data: Health Inventory Sync"
|
|
commit-message: "chore: update inventory health status [skip ci]"
|
|
labels: "v2-data, health-sync"
|
|
|
|
- name: Persist Incremental Inventory to Cache
|
|
if: always()
|
|
uses: actions/cache/save@v6
|
|
with:
|
|
path: data/inventory.yaml
|
|
key: inventory-v2-${{ github.run_id }}-${{ github.run_attempt }}
|