chore: test updates, ai guidance, and pr template #337
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright 2026 Defense Unicorns | |
| # SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial | |
| name: PR Title and Commit Lint | |
| permissions: | |
| pull-requests: read | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: [main] | |
| # `milestoned` is a workaround for release-please not triggering PR workflows | |
| # (PRs should be added to a milestone to trigger). `reopened` covers PRs | |
| # release-please reopens after merge. | |
| types: [milestoned, opened, reopened, edited, synchronize] | |
| concurrency: | |
| group: commitlint-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pr-title-lint: | |
| name: PR Title Lint | |
| uses: defenseunicorns/uds-common/.github/workflows/callable-commitlint.yaml@ba03e5bec6704a54466a94a3fdee9741b755630b # v1.24.11 |