This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
Fix team members and team repos ingestion; filter batched pull requests #194
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: Questions | |
on: [pull_request_target] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- id: setup-node | |
name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Check out `main` branch | |
uses: actions/checkout@v3 | |
with: | |
path: source | |
- name: Check out target branch questions | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
path: target | |
- name: Install dependencies for `main` branch | |
run: yarn install --cwd source | |
- name: Validate questions on target branch | |
env: | |
MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID: | |
${{ secrets.MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID }} | |
MANAGED_QUESTIONS_JUPITERONE_API_KEY: | |
${{ secrets.MANAGED_QUESTIONS_JUPITERONE_API_KEY }} | |
run: | |
yarn --cwd source j1-integration validate-question-file -a | |
$MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID -k | |
$MANAGED_QUESTIONS_JUPITERONE_API_KEY -p | |
../target/jupiterone/questions/questions.yaml |