From 9fa4c7c1b9b36ff4af2093df64a5473de84d1c96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 10 Oct 2024 15:13:14 -0400 Subject: [PATCH 1/2] chore: fix some links in the bug issue template --- .github/ISSUE_TEMPLATE/docs.yml | 6 +++--- .github/workflows/link-inspector.yaml | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/link-inspector.yaml diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index c36d3b54..f0af1dd3 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -5,7 +5,7 @@ body: - type: markdown attributes: value: | - Thanks for taking the time to fill out a documentation issue! If you need help, please ask your question in our [Slack community](https://kubefirst.io/slack). + Thanks for taking the time to fill out a documentation issue! If you need help, please ask your question in our [Slack community](https://konstruct.io/slack). - type: dropdown id: type attributes: @@ -23,7 +23,7 @@ body: attributes: label: What page is concerned? description: If needed, URL to the page with missing or unclear information - placeholder: https://docs.kubefirst.io/ + placeholder: https://kubefirst.konstruct.io/docs/ - type: input id: version attributes: @@ -42,7 +42,7 @@ body: id: terms attributes: label: Code of Conduct - description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/kubefirst/docs/blob/main/CODE_OF_CONDUCT) + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/konstructio/kubefirst-docs/blob/main/CODE_OF_CONDUCT.md) options: - label: I agree to follow this project's Code of Conduct required: true diff --git a/.github/workflows/link-inspector.yaml b/.github/workflows/link-inspector.yaml new file mode 100644 index 00000000..dd7ffa0d --- /dev/null +++ b/.github/workflows/link-inspector.yaml @@ -0,0 +1,20 @@ +--- +name: Markdown Links Validation + +on: [push, workflow_dispatch] + +jobs: + check-markdown-link: + runs-on: ubuntu-latest + steps: + + - name: Checkout this repository + uses: actions/checkout@v4.1.7 + + - name: Run linkspector + uses: umbrelladocs/action-linkspector@v1.1.3 + with: + github_token: ${{ secrets.github_token }} + fail_on_error: true + config_file: .linkinspector.yml + filter_mode: nofilter \ No newline at end of file From a3fb7e263c02c48a614b4f01130b7901c672fa9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 10 Oct 2024 15:17:09 -0400 Subject: [PATCH 2/2] remove file that shouldn't be there --- .github/workflows/link-inspector.yaml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/link-inspector.yaml diff --git a/.github/workflows/link-inspector.yaml b/.github/workflows/link-inspector.yaml deleted file mode 100644 index dd7ffa0d..00000000 --- a/.github/workflows/link-inspector.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Markdown Links Validation - -on: [push, workflow_dispatch] - -jobs: - check-markdown-link: - runs-on: ubuntu-latest - steps: - - - name: Checkout this repository - uses: actions/checkout@v4.1.7 - - - name: Run linkspector - uses: umbrelladocs/action-linkspector@v1.1.3 - with: - github_token: ${{ secrets.github_token }} - fail_on_error: true - config_file: .linkinspector.yml - filter_mode: nofilter \ No newline at end of file