From a541c26c25512ca910323308e5eae3259063ead5 Mon Sep 17 00:00:00 2001 From: Joshua Li Date: Thu, 6 Jan 2022 14:43:51 -0800 Subject: [PATCH 1/2] Add support for codeowners to repo Signed-off-by: Joshua Li --- .github/CODEOWNERS | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..ced27b55 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# This should match the owning team set up in https://github.com/orgs/opensearch-project/teams +* @opensearch-project/notifications \ No newline at end of file From da0149ef0bf0a3719475527984c4cfd7154cf763 Mon Sep 17 00:00:00 2001 From: Joshua Li Date: Thu, 6 Jan 2022 14:46:37 -0800 Subject: [PATCH 2/2] Fix link checker Signed-off-by: Joshua Li --- .github/workflows/link-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index 209eee76..e0371f54 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -24,7 +24,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@master with: - args: --accept=200,403,429 "**/*.html" "**/*.md" "**/*.txt" + args: --accept=200,403,429 "./**/*.html" "./**/*.md" "./**/*.txt" env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - name: Fail if there were link errors