Updated Technologies list in Project Overview section in Civic Tech Jobs Project Page #8
Workflow file for this run
This file contains 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@v4 | |
- uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.HACKFORLA_ADMIN_TOKEN }} | |
script: | | |
const verifyPR = require('./github-actions/trigger-pr-target/verify-pr.js'); | |
verifyPR({github, context}); |