Skip to content

Commit fb1d401

Browse files
authored
chore: remove deprecated dependabot reviewers and annotation fixes (#947)
* chore: Remove depcreated Dependabot Reviewers as CODOWNERS configured * fix: remove backticks causing execution of make command obscuring log output * fix: add context to annotation so it is not overwritten by test annotations * chore: add context to annotation to avoid future overwritting of default context * docs/fix: update index.md with 'make docs'
1 parent a93c1df commit fb1d401

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

.buildkite/steps/annotate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ go get gotest.tools/gotestsum
55

66
make testacc | tee test_output
77

8-
printf '```term\n%b\n```' "$(cat test_output)" | buildkite-agent annotate --style info
8+
printf '```term\n%b\n```' "$(cat test_output)" | buildkite-agent annotate --style info --context "testacc"

.buildkite/steps/documentation.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ git diff --exit-code docs &>/dev/null && true
1212
docs_changes="$?"
1313

1414
if [ "${docs_changes:-0}" -ne 0 ] ; then
15-
echo "+++ :bk-status-failed: Documentation changes detected!!! Run `make docs` locally, commit the changes and re-push."
15+
echo "+++ :bk-status-failed: Documentation changes detected!!! Run 'make docs' locally, commit the changes and re-push."
1616
git checkout go.* &>/dev/null
1717
git status --short | tee git_diff_output.out
18-
printf '```term\ngit status --short\n%b\n```' "$(cat git_diff_output.out)" | buildkite-agent annotate --style warning
18+
printf '```term\ngit status --short\n%b\n```' "$(cat git_diff_output.out)" | buildkite-agent annotate --style warning --context "docs"
1919
fi
2020

2121
exit "$docs_changes"

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "monthly"
7-
reviewers:
8-
- "@buildkite/terraform-technical-services"
97
- package-ecosystem: "gomod"
108
directory: /
119
schedule:
1210
interval: "weekly"
1311
open-pull-requests-limit: 2
14-
reviewers:
15-
- "@buildkite/terraform-technical-services"

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
33
page_title: "buildkite Provider"
4-
subcategory: ""
54
description: |-
65
This provider can be used to manage resources on buildkite.com https://buildkite.com.
76
---

0 commit comments

Comments
 (0)