A Buildkite plugin that shows git diff as a build annotation. You can compare against a target branch, a specific number of previous commits, or include submodule changes.
Add the following to your pipeline.yml
:
steps:
- command: echo "Running with git diff..."
plugins:
- annotate-git-diff#v1.1.0:
context: "my-diff" # optional
format: "markdown" # optional (markdown|diff)
compare_branch: "main" # optional (defaults to comparing against previous commit)
compare_commits: 3 # optional (compare against 3 commits back, ignored if compare_branch is set)
include_merge_base: true # optional (defaults to true)
include_submodules: false # optional (defaults to false)
The annotation context. Default: git-diff
The output format for the diff. Can be either markdown
or diff
. Default: markdown
The branch to compare against. If not set, will compare against previous commits based on compare_commits
. Default: none
Number of commits to compare against when no branch is specified. Default: 1
When comparing against a branch:
true
: Compares against the common ancestor of the current commit and target branchfalse
: Compares directly against the HEAD of the target branch Default:true
Whether to include submodule changes in the diff output.
true
: Shows submodule changes in diff and includes them in statisticsfalse
: Excludes submodule changes Default:false
steps:
- plugins:
- annotate-git-diff#v1.1.0:
compare_branch: "main"
steps:
- plugins:
- annotate-git-diff#v1.1.0:
compare_commits: 3 # Shows changes in last 3 commits
steps:
- plugins:
- annotate-git-diff#v1.1.0:
compare_branch: "main"
include_submodules: true
steps:
- plugins:
- annotate-git-diff#v1.1.0:
format: "diff"
To run the tests:
docker-compose run --rm tests
MIT