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

A repository uses three coordinated stages: issue triage, implementation, and validation. The team wants enough evidence to reconstruct what happened after a failed run. Review the workflow configuration.

name: coordinated-agent-run

on:
  workflow_dispatch:
    inputs:
      issue_number:
        required: true
        type: string

permissions:
  contents: read
  issues: read
  pull-requests: read
  actions: read

jobs:
  triage:
    runs-on: ubuntu-latest
    outputs:
      scope: ${{ steps.scope.outputs.scope }}
    steps:
      - id: scope
        run: |
           mkdir -p evidence/triage
           gh issue view "${{ inputs.issue_number }}" \
             --json title,body,comments > evidence/triage/issue.json
           echo "scope=auth-session-timeout" >> "$GITHUB_OUTPUT"
      - uses: actions/upload-artifact@v4
        with:
           name: triage-${{ github.run_id }}
           path: evidence/triage/

   implementation:
     needs: triage
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v4
       - run: |
            mkdir -p evidence/implementation
            echo "${{ needs.triage.outputs.scope }}" > evidence/implementation/triage-scope.txt
            git diff --name-only > evidence/implementation/touched-files.txt
       - uses: actions/upload-artifact@v4
         with:
            name: implementation-${{ github.run_id }}
            path: evidence/implementation/

  validation:
    needs: implementation
    runs-on: ubuntu-latest
    steps:
      - uses: actions/download-artifact@v4
        with:
           name: implementation-${{ github.run_id }}
      - run: |
           echo "Downloaded implementation evidence" >> "$GITHUB_STEP_SUMMARY"
Evaluate the following statements.

1. The workflow preserves triage evidence as a run-specific artifact
2. The implementation job can reference the triage scope through needs
3. The validation job downloads both triage and implementation artifacts

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