Update Contributor Honor Roll #15563
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 Contributor Honor Roll | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_run: | |
| workflows: ["Validate README"] | |
| types: | |
| - completed | |
| jobs: | |
| update_honor_roll: | |
| 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: Install Dependencies | |
| run: pip install requests beautifulsoup4 | |
| - name: Run Honor Roll Updater | |
| run: python docs/validators/update_honor_roll.py |