From 92945eda95f48df36472a79e1b3b5aacfb95c74e Mon Sep 17 00:00:00 2001 From: frederikwag Date: Fri, 19 Sep 2025 13:28:58 +0200 Subject: [PATCH 1/2] link_repair --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6bddb81..3f85c60 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Arduino DevOps +[![Check links](https://github.com/Infineon/arduino-devops/actions/workflows/check_links.yml/badge.svg)](https://github.com/Infineon/arduino-devops/actions/workflows/check_links.yml) + This repository contains a **collection of utilities** designed to ease and support the **DevOps** of **Arduino third-party cores** and **libraries**. ## Audience @@ -54,4 +56,4 @@ Thanks a lot for your contribution! 🙏 ## License -See the [LICENSE](LICENSE.md) file for more details. \ No newline at end of file +See the [LICENSE](/LICENSE) file for more details. \ No newline at end of file From 7cb0d7d24d0af1e9e9a8b65c20b72c9353e001cd Mon Sep 17 00:00:00 2001 From: frederikwag Date: Fri, 19 Sep 2025 13:46:18 +0200 Subject: [PATCH 2/2] added check_links file --- .github/workflows/check_links.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/check_links.yml diff --git a/.github/workflows/check_links.yml b/.github/workflows/check_links.yml new file mode 100644 index 0000000..e4d8a03 --- /dev/null +++ b/.github/workflows/check_links.yml @@ -0,0 +1,17 @@ +name: Check links + +on: + workflow_dispatch: + push: + branches: + - master + - main + tags: + - '*' + pull_request: + schedule: + - cron: '30 3 * * 5' # Run every Friday at 3:30 AM UTC + +jobs: + linkChecker: + uses: Infineon/makers-devops/.github/workflows/check_links.yml@main \ No newline at end of file