From 0b04020388d757f26fa54c2a55c0e847f8a95ea7 Mon Sep 17 00:00:00 2001 From: Chris Wood Date: Fri, 20 Mar 2026 15:29:58 +0000 Subject: [PATCH 1/3] test: Social workflow --- src/social/2026-03-20-Test.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/social/2026-03-20-Test.md diff --git a/src/social/2026-03-20-Test.md b/src/social/2026-03-20-Test.md new file mode 100644 index 0000000..a399622 --- /dev/null +++ b/src/social/2026-03-20-Test.md @@ -0,0 +1,14 @@ +--- +publication-date: 2026-04-01T09:00:00-07:00 +platform: linkedin +tagged-users: + - name: Chris Wood + url: https://www.linkedin.com/in/sensiblewood/ +--- + +Write your post body here. LinkedIn-style plain text — no Markdown formatting. + +Keep it concise (150–300 words works well on LinkedIn). Add a blank line between +paragraphs for readability in the feed. + +#OpenAPI #APIFirst From f3f2dfb497faa65841c7d7948a15b307f99ba2cd Mon Sep 17 00:00:00 2001 From: Chris Wood Date: Fri, 20 Mar 2026 15:36:43 +0000 Subject: [PATCH 2/3] fix: Update pattern in grep for issue --- .github/workflows/social-post-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/social-post-review.yml b/.github/workflows/social-post-review.yml index 63c5a85..1d96106 100644 --- a/.github/workflows/social-post-review.yml +++ b/.github/workflows/social-post-review.yml @@ -19,7 +19,7 @@ jobs: env: PR_BODY: ${{ github.event.pull_request.body }} run: | - ISSUE_NUMBER=$(echo "$PR_BODY" | grep -ioP '(closes|fixes|resolves)\s+#\K[0-9]+' | head -1) + ISSUE_NUMBER=$(echo "$PR_BODY" | grep -ioP '(closes|fixes|resolves)\s+#[0-9]+' | grep -oP '[0-9]+$' | head -1) if [ -z "$ISSUE_NUMBER" ]; then echo "::error::No linked issue found in PR body. Add 'Closes #N' to link this PR to an issue." exit 1 From 887a6397757633be9f6331c2fd32ca2fc3958d9b Mon Sep 17 00:00:00 2001 From: Chris Wood Date: Fri, 20 Mar 2026 16:00:48 +0000 Subject: [PATCH 3/3] chore: Removed test file --- src/social/2026-03-20-Test.md | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/social/2026-03-20-Test.md diff --git a/src/social/2026-03-20-Test.md b/src/social/2026-03-20-Test.md deleted file mode 100644 index a399622..0000000 --- a/src/social/2026-03-20-Test.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -publication-date: 2026-04-01T09:00:00-07:00 -platform: linkedin -tagged-users: - - name: Chris Wood - url: https://www.linkedin.com/in/sensiblewood/ ---- - -Write your post body here. LinkedIn-style plain text — no Markdown formatting. - -Keep it concise (150–300 words works well on LinkedIn). Add a blank line between -paragraphs for readability in the feed. - -#OpenAPI #APIFirst