Skip to content

Commit 2baac07

Browse files
authored
[Docs Site] Temp. remove Kody from assignees (cloudflare#17372)
1 parent 3a71f84 commit 2baac07

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/actions/assign-issue/index.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/assign-issue/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ import * as codeOwnersUtils from "codeowners-utils";
6767
console.log(assignees);
6868

6969
if (assignees.size === 0) {
70-
assignees.add("kodster28");
70+
// assign folks which will manually reassign
71+
["haleycode", "pedrosousa", "dcpena", "patriciasantaana"].forEach(
72+
(username) => assignees.add(username),
73+
);
7174
}
7275

7376
const client = github.getOctokit(token);

.github/workflows/anchor-link-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ jobs:
5757
curl --silent -X POST -H "Authorization: Bearer $GITHUB_TOKEN" \
5858
-H "Accept: application/vnd.github+json" \
5959
"https://api.github.com/repos/$GITHUB_REPOSITORY/issues" \
60-
-d "{\"title\": \"Broken Header Links Found\", \"body\": \"$(cat issue_body.txt)\", \"assignees\": [\"kodster28\", \"haleycode\"]}"
60+
-d "{\"title\": \"Broken Header Links Found\", \"body\": \"$(cat issue_body.txt)\", \"assignees\": [\"haleycode\"]}"

.github/workflows/api-links-crawl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
curl --silent -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
5151
-H "Accept: application/vnd.github+json" \
5252
"https://api.github.com/repos/cloudflare/cloudflare-docs/issues" \
53-
-d "{\"title\": \"Broken API docs links\", \"body\": \"The following API doc links are broken: ${EXPORTED_VARIABLE}\", \"assignees\": [\"kodster28\", \"haleycode\"]}"
53+
-d "{\"title\": \"Broken API docs links\", \"body\": \"The following API doc links are broken: ${EXPORTED_VARIABLE}\", \"assignees\": [\"haleycode\"]}"

.github/workflows/image-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
curl --silent -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
4848
-H "Accept: application/vnd.github+json" \
4949
"https://api.github.com/repos/cloudflare/cloudflare-docs/issues" \
50-
-d "{\"title\": \"Unused Image Files Found\", \"body\": \"$(cat unused_files.txt)\", \"assignees\": [\"kodster28\", \"haleycode\"]}"
50+
-d "{\"title\": \"Unused Image Files Found\", \"body\": \"$(cat unused_files.txt)\", \"assignees\": [\"haleycode\"]}"

0 commit comments

Comments
 (0)