AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
metadata
title: REST API endpoints for pre-receive hooks
shortTitle: Pre-receive hooks
allowTitleToDifferFromFilename: true
intro: Use the REST API to create, list, update and delete pre-receive hooks.
versions:
  ghes: '*'
topics:
  - API
autogenerated: rest

About pre-receive hooks

These endpoints are only available to authenticated site administrators. Normal users will receive a 404 response.

{% data reusables.user-settings.enterprise-admin-api-classic-pat-only %}

Object attributes

Pre-receive Hook

Name Type Description
name string The name of the hook.
script string The script that the hook runs.
script_repository object The GitHub repository where the script is kept.
environment object The pre-receive environment where the script is executed.
enforcement string The state of enforcement for this hook.
allow_downstream_configuration boolean Whether enforcement can be overridden at the org or repo level.

Possible values for enforcement are enabled, disabled andtesting. disabled indicates the pre-receive hook will not run. enabled indicates it will run and reject any pushes that result in a non-zero status. testing means the script will run but will not cause any pushes to be rejected.