@@ -6,7 +6,7 @@ This plugin is intentionally small:
66
77- ` mise ` is installed if missing or at the wrong version
88- ` mise install ` always runs
9- - ` mise env --shell bash ` is always appended to ` $BUILDKITE_ENV_FILE `
9+ - ` mise env --shell bash ` is sourced in the hook and appended to ` $BUILDKITE_ENV_FILE `
1010- tool versions come from the repository, not plugin config
1111
1212## Example
@@ -15,7 +15,7 @@ This plugin is intentionally small:
1515steps :
1616 - label : " :wrench: Test"
1717 plugins :
18- - buildkite-plugins /mise#v1.0 .0:
18+ - buildkite/mise#v1.1 .0:
1919 version : 2026.2.11
2020 command : go test ./...
2121` ` `
2626steps :
2727 - label : " :wrench: Test backend"
2828 plugins :
29- - buildkite-plugins /mise#v1.0 .0:
29+ - buildkite/mise#v1.1 .0:
3030 dir : backend
3131 command : go test ./...
3232` ` `
@@ -39,7 +39,7 @@ cache: ".buildkite/cache-volume"
3939steps :
4040 - label : " :wrench: Test"
4141 plugins :
42- - buildkite-plugins /mise#v1.0 .0: ~
42+ - buildkite/mise#v1.1 .0: ~
4343 command : go test ./...
4444` ` `
4545
@@ -66,7 +66,8 @@ The target directory must contain one of:
6666Run plugin checks locally :
6767
6868` ` ` bash
69- docker run --rm -v "$PWD:/plugin" -w /plugin buildkite/plugin-linter --id buildkite-plugins/mise --path /plugin
69+ mise install
70+ docker run --rm -v "$PWD:/plugin" -w /plugin buildkite/plugin-linter --id buildkite/mise --path /plugin
7071docker run --rm -v "$PWD:/plugin" -w /plugin buildkite/plugin-tester
7172"$(mise where shellcheck@0.11.0)/shellcheck-v0.11.0/shellcheck" hooks/pre-command tests/pre-command.bats
7273` ` `
0 commit comments