From 23ce4b9f20b457e6cf8eb4ce22068c2d910e7332 Mon Sep 17 00:00:00 2001 From: zoltan-baba Date: Fri, 8 May 2026 18:28:01 +0200 Subject: [PATCH 1/5] Add test MDX file with unlinked Step names --- docs/test-link-steps.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/test-link-steps.mdx diff --git a/docs/test-link-steps.mdx b/docs/test-link-steps.mdx new file mode 100644 index 0000000..09eae83 --- /dev/null +++ b/docs/test-link-steps.mdx @@ -0,0 +1,9 @@ +--- +title: Test link-steps workflow +--- + +This page is used to test the automatic Step name linking workflow. + +Use the **Activate SSH key** Step to authenticate with your repository over SSH. + +After cloning your code, you can cache dependencies with the **Save Gradle Cache** Step to speed up subsequent builds. From e2761b921788115f3e2ad9a3b9825973f495b9d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 8 May 2026 16:28:23 +0000 Subject: [PATCH 2/5] [skip ci] Link Bitrise Step names to GitHub source --- docs/test-link-steps.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/test-link-steps.mdx b/docs/test-link-steps.mdx index 09eae83..d86f548 100644 --- a/docs/test-link-steps.mdx +++ b/docs/test-link-steps.mdx @@ -6,4 +6,4 @@ This page is used to test the automatic Step name linking workflow. Use the **Activate SSH key** Step to authenticate with your repository over SSH. -After cloning your code, you can cache dependencies with the **Save Gradle Cache** Step to speed up subsequent builds. +After cloning your code, you can cache dependencies with the [**Save Gradle Cache**](https://github.com/bitrise-steplib/bitrise-step-save-gradle-cache) Step to speed up subsequent builds. From 5e6f337f4582bd3405ab54b709c30854654be5b2 Mon Sep 17 00:00:00 2001 From: zoltan-baba Date: Fri, 8 May 2026 18:29:55 +0200 Subject: [PATCH 3/5] Fix test: use full Step title 'Activate SSH key (RSA private key)' --- docs/test-link-steps.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/test-link-steps.mdx b/docs/test-link-steps.mdx index d86f548..b768326 100644 --- a/docs/test-link-steps.mdx +++ b/docs/test-link-steps.mdx @@ -4,6 +4,6 @@ title: Test link-steps workflow This page is used to test the automatic Step name linking workflow. -Use the **Activate SSH key** Step to authenticate with your repository over SSH. +Use the **Activate SSH key (RSA private key)** Step to authenticate with your repository over SSH. After cloning your code, you can cache dependencies with the [**Save Gradle Cache**](https://github.com/bitrise-steplib/bitrise-step-save-gradle-cache) Step to speed up subsequent builds. From 30477dfbedf1d0bc58085e697ecdeadeecba25f2 Mon Sep 17 00:00:00 2001 From: zoltan-baba Date: Fri, 8 May 2026 18:32:29 +0200 Subject: [PATCH 4/5] Reset test file: both Step names unlinked (including short form 'Activate SSH key') --- docs/test-link-steps.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/test-link-steps.mdx b/docs/test-link-steps.mdx index b768326..09eae83 100644 --- a/docs/test-link-steps.mdx +++ b/docs/test-link-steps.mdx @@ -4,6 +4,6 @@ title: Test link-steps workflow This page is used to test the automatic Step name linking workflow. -Use the **Activate SSH key (RSA private key)** Step to authenticate with your repository over SSH. +Use the **Activate SSH key** Step to authenticate with your repository over SSH. -After cloning your code, you can cache dependencies with the [**Save Gradle Cache**](https://github.com/bitrise-steplib/bitrise-step-save-gradle-cache) Step to speed up subsequent builds. +After cloning your code, you can cache dependencies with the **Save Gradle Cache** Step to speed up subsequent builds. From 971081333ac72b73aa4cf2746b38825c95e03968 Mon Sep 17 00:00:00 2001 From: zoltan-baba Date: Fri, 8 May 2026 18:37:49 +0200 Subject: [PATCH 5/5] Fix Python 3.9 compatibility: add __future__ annotations import --- scripts/link_steps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/link_steps.py b/scripts/link_steps.py index 295837f..32585bf 100644 --- a/scripts/link_steps.py +++ b/scripts/link_steps.py @@ -19,6 +19,8 @@ 3. Single-word titles (e.g. "Script") are only linked when followed by "Step". """ +from __future__ import annotations + import json import re import subprocess