1
0
Fork 0
mirror of https://codeberg.org/Mo8it/git-webhook-client synced 2024-10-18 07:22:39 +00:00
No description
Find a file
2022-12-30 14:54:14 +01:00
migrations Use task instead of thread 2022-12-26 23:43:44 +01:00
src Remove unneeded async 2022-12-30 14:54:14 +01:00
templates Use task instead of thread 2022-12-26 23:43:44 +01:00
.containerignore Add Containerfile 2022-12-24 20:17:58 +01:00
.gitignore Update documentation 2022-12-27 19:30:29 +01:00
Cargo.toml Add extractors, use inner instead of 0, replace new with build 2022-12-24 23:26:12 +01:00
compose.yaml Update documentation 2022-12-27 19:30:29 +01:00
Containerfile Update documentation 2022-12-27 19:30:29 +01:00
diesel.toml Added logs in a database 2022-10-11 20:39:10 +02:00
LICENSE.txt FromData 2022-10-10 13:52:42 +02:00
README.md Update documentation 2022-12-27 19:30:29 +01:00
template_config.yaml Update documentation 2022-12-27 19:30:29 +01:00

Git Webhook Client

Git webhook client that runs commands after a webhook event and shows their output.

Currently, only Gitea is supported. If you want support for Gitlab or Github, then please open an issue.

Features

  • Verify the webhook event with a secret.
  • Run a configured command to a specific repository on a webhook event.
  • Save the output of the command.
  • Show an output by visiting its URL.
  • Send email after a webhook trigger.
  • Support configuration for multiple repositories.
  • Written in Rust :D

Getting started

First, clone the repository and create the configuration file (see below).

Configuration

The program looks for the configuration file set with the environment variable GWC_CONFIG_FILE.

Use the commented template configuration file template_config.yaml as a starting point.

Running

Containerized

With Docker or Podman, use the compose file compose.yaml as a starting point.

Not containerized

Requirements:

  • cargo to compile the source code.
  • Development package for SQLite (sqlite-devel on Fedora, libsqlite3-dev on Debian)

Run the command cargo install --path . to compile.

Run the command GWC_CONFIG_FILE=/path/to/config.yaml ~/.cargo/bin/git-webhook-client to start the client.

Setup on the git server

Setup the webhook for the configured repositories on the git server. Don't forget to enter the same secret that you did specify in the YAML configuration file.

Show output

After an event, the client responds with a URL that shows the log. The id in that URL is important and specific to this event.

If you want to see the last log, just visit the base_url from the configuration.

To see a specific log with an id, visit the URL: base_url/?id=THE_ID_OF_THE_EVENT.

You can specify a negative ID to see the last events. id=-1 corresponds to the last log, id=-2 corresponds to the log before it and so on.

Note

This is my first Rust project and I am still learning. If you have any suggestions, just open an issue!