GitHubGithub GH-600 Agentic AI Developer Certification ·EN ·Updated 15 Jul 2026

A repository has a validation workflow for Copilot-generated pull requests. The team wants failures to be diagnosable from the workflow logs and artifacts without rerunning the agent blindly. A reviewer checks the workflow configuration.

name: validate-agent-pr

on:
  pull_request:
    branches:
      - main

permissions:
  contents: read
  actions: read
  checks: read

jobs:
  validate:
    runs-on: ubuntu-latest
    env:
      GIT_TRACE: "1"
      GIT_CURL_VERBOSE: "1"
    steps:
      - uses: actions/checkout@v4

        - name: Capture agent plan
          run: |
            mkdir -p diagnostics
            test -f .github/copilot/implementation-plan.md && \
              cp .github/copilot/implementation-plan.md diagnostics/implementation-plan.md || \
              echo "plan not found" > diagnostics/implementation-plan.md

        - name: Run validation tests
          run: |
            npm ci --verbose
            npm test -- --json --outputFile=diagnostics/test-results.json

      - name: Upload diagnostics
        if: ${{ always() }}
        uses: actions/upload-artifact@v4
        with:
          name: copilot-validation-diagnostics
          path: diagnostics/
Evaluate the following statements.

1. Verbose Git and npm output can improve workflow log evidence.
2. The diagnostics artifact is uploaded after failed test runs.
3. The artifact upload makes failed required checks pass.

Choose an answer

Tap an option to check your answer.

Pass your exam — without the endless answer hunt

Get every verified question and explanation for this exam in one place, and save hours of prep. 1,000+ certifications · 20+ languages · free to start.

Pass your exam faster No card needed
✓ Verified by ExamRoll editorial · Updated 15 July 2026
All-in-one access

One subscription. Every exam.

Every plan unlocks unlimited answer search, practice tests, AI explanations, and the full resource library — in 20+ languages.

Monthly
24.87
Just €0.83/day
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

Best value
12 months
179.87
Just €0.49/daySave 40%
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

✓ Free plan included · ✓ Cancel anytime · ✓ All plans unlock the full product