Generate Contributor Profiles #15536
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: Generate Contributor Profiles | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_run: | |
| workflows: ["Update Contributor Honor Roll"] | |
| types: | |
| - completed | |
| jobs: | |
| generate_profiles: | |
| 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 Profile Generator | |
| run: python docs/validators/generate_profiles.py |