pippolo84 / release

Repository used to generate release notes for Cilium releases

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cilium release

This repository will generate changelog for cilium releases

$ make release
$ export GITHUB_TOKEN=<token_with_repo_public_access>

For a x.y.z release, a.k.a patch release

$ ./release --base <base-commit>  \
            --head <head-commit>

Where:

  • <base-commit> is x.y.z-1
  • <head-commit> should be the last commit available for the x.y branch.

For a x.y.0 release, a.k.a minor release

$ ./release --base <base-commit>  \
            --head <head-commit> \
            --last-stable x.y-1

Where:

  • <base-commit> can be found with git merge-base origin/vx.y-1 origin/vx.y
  • <head-commit> should be the last commit available for the x.y branch.

About

Repository used to generate release notes for Cilium releases

License:Apache License 2.0


Languages

Language:Go 97.9%Language:Dockerfile 1.4%Language:Makefile 0.7%