Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.22 KB

File metadata and controls

44 lines (34 loc) · 1.22 KB
title GitHub Lockdown Mode
description GitHub lockdown mode has been superseded by Integrity Filtering, which provides finer-grained content filtering based on author trust and merge status.
sidebar
order
660

Note

GitHub Lockdown Mode is now replaced by GitHub Integrity Filtering. Use Integrity Filtering instead. Integrity filtering provides finer-grained control over which content the agent can see, based on author trust and merge status, and works without requiring additional authentication.

Migrating to Integrity Filtering

Replace lockdown: true with min-integrity: approved:

# Before (deprecated)
tools:
  github:
    lockdown: true

# After (recommended)
tools:
  github:
    min-integrity: approved

Replace lockdown: false with min-integrity: none:

# Before (deprecated)
tools:
  github:
    lockdown: false

# After (recommended)
tools:
  github:
    min-integrity: none

See Also