From ec0006105bd394d2b58a28cfc1298882cbbbd7a8 Mon Sep 17 00:00:00 2001 From: Thomas Drosdzoll Date: Wed, 3 Sep 2025 14:01:05 +0200 Subject: [PATCH 1/4] docs: Adapt link to siemens-internal contributing guideline --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ef46e13..1cdf500 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -83,6 +83,6 @@ Once all clearings are successful, our admins will create the repository within ### Siemens employees -In case you are a Siemens employee who likes to propose a new repository for the GitHub community, please the [Siemens contribution process](https://code.siemens.com) for a set of follow along instructions. +In case you are a Siemens employee who likes to propose a new repository for the GitHub community, please the [Siemens contribution process](https://github.siemens.cloud/simatic-ax/.github/blob/main/profile/CONTRIBUTING.md) for a set of follow along instructions. > For all inquiries, please get in touch via our [Admin Team](https://github.com/orgs/simatic-ax/teams/toa-teamofaxion). From b2fe0502ff1b38bdb65bfefb8d9a5c93cb87ee03 Mon Sep 17 00:00:00 2001 From: Thomas Drosdzoll Date: Thu, 11 Sep 2025 10:21:07 +0200 Subject: [PATCH 2/4] Update CONTRIBUTING.md Co-authored-by: Stefan Becker <97045788+BeckerStS@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1cdf500..732d54c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -83,6 +83,6 @@ Once all clearings are successful, our admins will create the repository within ### Siemens employees -In case you are a Siemens employee who likes to propose a new repository for the GitHub community, please the [Siemens contribution process](https://github.siemens.cloud/simatic-ax/.github/blob/main/profile/CONTRIBUTING.md) for a set of follow along instructions. +In case you are a Siemens employee who likes to propose a new repository for the GitHub community, please read the [Siemens contribution process](https://github.siemens.cloud/simatic-ax/.github/blob/main/profile/CONTRIBUTING.md) for a set of follow along instructions. > For all inquiries, please get in touch via our [Admin Team](https://github.com/orgs/simatic-ax/teams/toa-teamofaxion). From c95bb0f8fd352542725083452b45d73d0c41ed75 Mon Sep 17 00:00:00 2001 From: Thomas Drosdzoll Date: Thu, 11 Sep 2025 10:23:23 +0200 Subject: [PATCH 3/4] change link checking --- .github/workflows/check-links-workflow.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-links-workflow.yml b/.github/workflows/check-links-workflow.yml index d271ec2..ea46a0b 100644 --- a/.github/workflows/check-links-workflow.yml +++ b/.github/workflows/check-links-workflow.yml @@ -13,8 +13,15 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Check links - uses: gaurav-nelson/github-action-markdown-link-check@v1 + - name: Link Checker + uses: lycheeverse/lychee-action@v1.8.0 with: - check-modified-files-only: 'yes' - base-branch: 'main' \ No newline at end of file + args: --verbose --no-progress '**/*.md' + fail: true + format: markdown + config: | + exclude = [ + "^https://github\\.siemens\\.cloud" + ] + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 181fc707c0d9bf6ae3a85b768b06466002718c65 Mon Sep 17 00:00:00 2001 From: Thomas Drosdzoll Date: Thu, 11 Sep 2025 10:27:40 +0200 Subject: [PATCH 4/4] fix URL exclude --- .github/workflows/check-links-workflow.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/check-links-workflow.yml b/.github/workflows/check-links-workflow.yml index ea46a0b..4e05fa5 100644 --- a/.github/workflows/check-links-workflow.yml +++ b/.github/workflows/check-links-workflow.yml @@ -16,12 +16,8 @@ jobs: - name: Link Checker uses: lycheeverse/lychee-action@v1.8.0 with: - args: --verbose --no-progress '**/*.md' + args: --verbose --no-progress --exclude "^https://github\\.siemens\\.cloud" '**/*.md' fail: true format: markdown - config: | - exclude = [ - "^https://github\\.siemens\\.cloud" - ] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file