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

A team designs a recovery workflow for degraded multi-agent releases. A failed multi-agent-release run should create an incident issue, while rollback must only run when an operator manually supplies a rollback SHA. Evaluate the following statements. 1. The detect job can open an issue for a failed agent release. 2. The rollback job runs automatically when multi-agent-release fails. 3. The rollback job can be held by required reviewers on production-rollback.

name: multi-agent-recovery

on:
  workflow_run:
    workflows: ["multi-agent-release"]
    types: [completed]
  workflow_dispatch:
    inputs:
      rollback_sha:
        description: Last known good deployment SHA
        required: true
        type: string

permissions:
  contents: read
  issues: write
  deployments: write

jobs:
  detect:
    if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion != 'success' }}
    runs-on: ubuntu-latest
    steps:
      - name: Open incident issue
        env:
           GH_TOKEN: ${{ github.token }}
        run: |
           gh issue create \
             --title "Agent release degraded" \
             --body "Run ${{ github.event.workflow_run.html_url }} failed validation."

   rollback:
     if: ${{ github.event_name == 'workflow_dispatch' }}
     runs-on: ubuntu-latest
     environment: production-rollback
     steps:
       - uses: actions/checkout@v4
         with:
            ref: ${{ inputs.rollback_sha }}

         - name: Roll back production
           run: ./ops/rollback.sh "${{ inputs.rollback_sha }}"

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