From 38775a77fdbf193e4a9cfeae992fe8afb3202ab7 Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Mon, 9 Mar 2026 13:36:47 -0500 Subject: [PATCH 1/4] test: testing 3.2.0 --- .github/workflows/pr-commit-message-enforcer-and-linker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-commit-message-enforcer-and-linker.yml b/.github/workflows/pr-commit-message-enforcer-and-linker.yml index 7f0f68f..dfc5b9a 100644 --- a/.github/workflows/pr-commit-message-enforcer-and-linker.yml +++ b/.github/workflows/pr-commit-message-enforcer-and-linker.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Azure DevOps Commit Validator and Pull Request Linker - uses: joshjohanning/azdo_commit_message_validator@v3 + uses: joshjohanning/azdo_commit_message_validator@3.2.0 with: azure-devops-organization: jjohanning0798 # The name of the Azure DevOps organization azure-devops-token: ${{ secrets.AZURE_DEVOPS_PAT }} # "Azure DevOps Personal Access Token (needs to be a full PAT) From a0ce50372d85cfa3a80e515c87031bc36d2a6169 Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Mon, 9 Mar 2026 13:42:02 -0500 Subject: [PATCH 2/4] Update pr-commit-message-enforcer-and-linker.yml --- .github/workflows/pr-commit-message-enforcer-and-linker.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-commit-message-enforcer-and-linker.yml b/.github/workflows/pr-commit-message-enforcer-and-linker.yml index dfc5b9a..ac92805 100644 --- a/.github/workflows/pr-commit-message-enforcer-and-linker.yml +++ b/.github/workflows/pr-commit-message-enforcer-and-linker.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Azure DevOps Commit Validator and Pull Request Linker - uses: joshjohanning/azdo_commit_message_validator@3.2.0 + uses: joshjohanning/azdo_commit_message_validator@v3.2.0 with: azure-devops-organization: jjohanning0798 # The name of the Azure DevOps organization azure-devops-token: ${{ secrets.AZURE_DEVOPS_PAT }} # "Azure DevOps Personal Access Token (needs to be a full PAT) @@ -27,3 +27,4 @@ jobs: link-commits-to-pull-request: true # Link the work items found in commits to the pull request check-commits: true check-pull-request: true + append-work-item-title: true From 64a0129d00674a3d7eec039824386e39358a1679 Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Mon, 9 Mar 2026 13:51:12 -0500 Subject: [PATCH 3/4] Update commit message validator action version --- .github/workflows/pr-commit-message-enforcer-and-linker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-commit-message-enforcer-and-linker.yml b/.github/workflows/pr-commit-message-enforcer-and-linker.yml index ac92805..6bb0200 100644 --- a/.github/workflows/pr-commit-message-enforcer-and-linker.yml +++ b/.github/workflows/pr-commit-message-enforcer-and-linker.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Azure DevOps Commit Validator and Pull Request Linker - uses: joshjohanning/azdo_commit_message_validator@v3.2.0 + uses: joshjohanning/azdo_commit_message_validator@fix-work-item-title-feature with: azure-devops-organization: jjohanning0798 # The name of the Azure DevOps organization azure-devops-token: ${{ secrets.AZURE_DEVOPS_PAT }} # "Azure DevOps Personal Access Token (needs to be a full PAT) From 7c3c89b3696a4785696b38a63f25c1c6ce65bdff Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Mon, 9 Mar 2026 14:14:06 -0500 Subject: [PATCH 4/4] Skip runs for azure-boards bot edits Added condition to skip workflow runs triggered by azure-boards bot. --- .github/workflows/pr-commit-message-enforcer-and-linker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-commit-message-enforcer-and-linker.yml b/.github/workflows/pr-commit-message-enforcer-and-linker.yml index 6bb0200..e4cdfc9 100644 --- a/.github/workflows/pr-commit-message-enforcer-and-linker.yml +++ b/.github/workflows/pr-commit-message-enforcer-and-linker.yml @@ -11,6 +11,8 @@ on: jobs: pr-commit-message-enforcer-and-linker: + # Skip runs triggered by azure-boards bot editing the PR body to avoid duplicate workflow runs + if: github.actor != 'azure-boards[bot]' runs-on: ubuntu-latest permissions: contents: read