Updated leadership profile section on Civic Tech Jobs page to include Gowthami Cherukuri #310
Workflow file for this run
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: Pull Request Verification | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| jobs: | |
| Check-Team-Membership: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/github-script@v8 | |
| with: | |
| github-token: ${{ secrets.HACKFORLA_ADMIN_TOKEN }} | |
| script: | | |
| const verifyPR = require('./github-actions/trigger-pr-target/verify-pr.js'); | |
| verifyPR({github, context}); |