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

A team adds a coordination workflow after several Copilot coding agent pull requests changed the same deployment files. The team wants to detect conflicts, publish evidence, and block merge when degraded coordination is detected. Evaluate the following statements. 1. The concurrency group prevents duplicate coordination runs for the same pull request. 2. The concurrency group coordinates conflicts across different pull requests. 3. The artifact step can preserve evidence after a failed overlap check.

name: agent-coordination-check

on:
  pull_request:
    branches:
      - main

permissions:
  contents: read
  pull-requests: read

concurrency:
  group: coordination-${{ github.event.pull_request.number }}
  cancel-in-progress: true

jobs:
  coordinate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
           fetch-depth: 0

         - name: Detect shared-file conflict
           id: overlap
           run: |
             mkdir -p coordination
             git diff --name-only origin/main...HEAD > coordination/files.txt
             python .github/scripts/check_shared_agent_files.py \
               --files coordination/files.txt \
               --owners .github/agent-ownership.yml \
               | tee coordination/overlap.log

         - name: Upload coordination evidence
           if: always()
           uses: actions/upload-artifact@v4
           with:
             name: coordination-evidence
             path: coordination/

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