# Forge: Deployment Webhook Improvements

DevFeed: [Forge: Deployment Webhook Improvements](<https://devfeed.tech/articles/forge-deployment-webhook-improvements-3659.md>)

Original publisher: [Read original article](<https://laravel.com/blog/forge-deployment-webhook-improvements>)

Author: Tim MacDonald

Published: 2023-05-02T06:19:00Z

Content type: article

Language: en

Sources: [Laravel Blog](<https://devfeed.tech/sources/laravel-blog.md>)

Topics: [Deployment](<https://devfeed.tech/topics/deployment.md>), [Laravel](<https://devfeed.tech/topics/laravel.md>), [bitbucket](<https://devfeed.tech/topics/bitbucket.md>), [GitHub](<https://devfeed.tech/topics/github.md>), [GitLab](<https://devfeed.tech/topics/gitlab.md>), [ci](<https://devfeed.tech/topics/ci.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [bitbucket](<https://devfeed.tech/tags/bitbucket.md>), [ci](<https://devfeed.tech/tags/ci.md>), [code](<https://devfeed.tech/tags/code.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [feature](<https://devfeed.tech/tags/feature.md>), [git](<https://devfeed.tech/tags/git.md>), [github](<https://devfeed.tech/tags/github.md>), [gitlab](<https://devfeed.tech/tags/gitlab.md>), [laravel](<https://devfeed.tech/tags/laravel.md>), [projects](<https://devfeed.tech/tags/projects.md>), [source](<https://devfeed.tech/tags/source.md>)

## AI overview

Laravel Forge has improved Quick Deploy for sites using custom source control providers. Forge can detect GitHub, GitLab, or Bitbucket repositories and use their native push webhooks to populate commit information in the Deployments table and expose it to deploy scripts. Sites using other providers or CI can now pass branch, commit hash, author, and commit message through reserved query parameters in the Deployment Trigger URL.

## Source excerpt

Laravel Forge's "quick deploy" feature gives your team a seamless push-to-deploy experience. Whenever new code is pushed to your deployed branch, Forge will kick off a new deployment. This ensures tha...