Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adnanh/webhook
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.8.2
Choose a base ref
...
head repository: adnanh/webhook
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 6 files changed
  • 7 contributors

Commits on Oct 27, 2024

  1. fix: use CGO_ENABLED=0 for release builds (#705)

    Ensure that release builds are built with cgo disabled.  This is usually the case for cross-compiled builds anyway, but adding this flag makes builds consistent regardless of what platform they are being built on.
    
    In particular, without CGO_ENABLED=0, if you make the release builds on a linux/amd64 system then the linux/amd64 binary is dynamically linked against the system libc, meaning a binary built on a glibc-based system like Ubuntu will not work on a musl libc system like Alpine.  This is what appears to have happened for release 2.8.1.
    
    But the same source code built on a different system (e.g. darwin/arm64) would cross-compile the linux/amd64 binary with cgo disabled, making a static binary that works on both glibc and musl systems.  This is what appears to have happened for release 2.8.2.
    
    Setting CGO_ENABLED=0 in the Makefile will make the behaviour consistent for future releases, producing static binaries for the linux builds in all cases, whatever the build platform.
    ianroberts authored Oct 27, 2024
    Configuration menu
    Copy the full SHA
    f89b09b View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    ce08a68 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2024

  1. Configuration menu
    Copy the full SHA
    7bb6808 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2025

  1. feat: Add two template functions (#712)

    * chore: replace ioutil.ReadFile by os.ReadFile
    
    * feat: Add two template functions
    
    - cat:        Allows reading a value from a file
    - credential: Allows reading a credential passed by systemd
    Tom-Hubrecht authored Jan 11, 2025
    Configuration menu
    Copy the full SHA
    eb7e8f5 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2025

  1. fix: Trim the cat output (#720)

    `os.ReadFile` includes a trailing EOL, so we have to remove it to get
    the correct value
    Tom-Hubrecht authored Jan 12, 2025
    Configuration menu
    Copy the full SHA
    1b13355 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2025

  1. Configuration menu
    Copy the full SHA
    5981da2 View commit details
    Browse the repository at this point in the history
  2. docs: add ACR webhook to Hook-Examples.md (#731)

    * add ACR webhook to Hook-Examples.md
    
    Incoming Azure Container Registry (ACR) webhook syntax and format with link to a working docker container used to handle webhook and feed a local registry cache
    
    * Update Hook-Examples.md
    
    changed text according to suggestions of  https://github.com/moorereason (see PR)
    tomdess authored Aug 11, 2025
    Configuration menu
    Copy the full SHA
    2da9957 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2025

  1. Fix Gitea incoming webhook example and add a YAML version (#737)

    * Fix Gitea incoming webhook example and add a YAML version
    
    * Fix payload-hmac-sha256 secret attribute name
    jleroy authored Aug 28, 2025
    Configuration menu
    Copy the full SHA
    7ea2a53 View commit details
    Browse the repository at this point in the history
Loading