Update Glyphic Dashboard #31081
This file contains hidden or 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: Update Glyphic Dashboard | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_run: | |
| workflows: ["Validate README", "Validate Manifest"] | |
| types: | |
| - completed | |
| jobs: | |
| update_dashboard: | |
| if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v5 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Run Dashboard Updater | |
| run: python docs/validators/update_dashboard.py |