Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/pr-title-lint.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# IMPORTANT: This workflow is using a centralized PR Title validation as a reusable workflow from the AzureAD/azure-activedirectory-tokenbroker-for-objc repository. This helps ensure there is only a single source of truth for PR title linting across repos.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This pull request does not update CHANGELOG.md.

Please consider if this change would be noticeable to a partner or user and either update CHANGELOG.md or resolve this conversation.

#
# The PR title lint workflow lives in the 'main' branch of 'azure-activedirectory-tokenbroker-for-objc'.
# The PR title lint workflow lives in the 'dev' branch of 'azure-activedirectory-tokenbroker-for-objc'.
#
# To update or modify PR title requirements, ONLY edit the file:
# https://github.com/AzureAD/azure-activedirectory-tokenbroker-for-objc/blob/main/.github/workflows/pr-title-lint.yml
# https://github.com/AzureAD/azure-activedirectory-tokenbroker-for-objc/blob/dev/.github/workflows/pr-title-lint-reusable.yml
#
# For more information on reusable workflows, see: https://docs.github.com/en/actions/using-workflows/reusing-workflows

Expand All @@ -15,7 +15,8 @@ on:

permissions:
pull-requests: read

Copy link

Copilot AI Feb 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue: Line 18 contains trailing whitespace/blank indentation. Impact: while functionally harmless, it adds noise to diffs and can cause lint/format checks to fail in some tooling. Recommendation: remove the trailing spaces / keep the blank line truly empty.

Suggested change

Copilot uses AI. Check for mistakes.
jobs:
validate-pr-title:
uses: AzureAD/azure-activedirectory-tokenbroker-for-objc/.github/workflows/pr-title-lint.yml@main
uses: AzureAD/azure-activedirectory-tokenbroker-for-objc/.github/workflows/pr-title-lint-reusable.yml@dev
Comment on lines 20 to +21
Copy link

Copilot AI Feb 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue: The reusable workflow is referenced by a mutable branch ref (@dev). Impact: if that branch is updated (or compromised), this repo’s PR checks can change unexpectedly, which is a supply-chain risk and can also make CI behavior non-reproducible. Recommendation: pin the uses: reference to a specific tag or commit SHA (and update periodically), instead of a branch name; if you need a moving target, prefer a protected release branch and document the expected update process.

Copilot uses AI. Check for mistakes.
secrets: inherit
Loading