Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/lint-markdown.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint Markdown

Check warning on line 1 in .github/workflows/lint-markdown.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

1:1 [document-start] missing document start "---"
# Runs markdownlint-cli2 using the repo's .markdownlint.json config

on:

Check warning on line 4 in .github/workflows/lint-markdown.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

4:1 [truthy] truthy value should be one of [false, true]
Expand All @@ -18,7 +18,7 @@
- uses: actions/checkout@v7

- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v23
uses: DavidAnson/markdownlint-cli2-action@v24
with:
globs: |
**/*.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/squad-insider-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Squad Insider Release

Check warning on line 1 in .github/workflows/squad-insider-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

1:1 [document-start] missing document start "---"

on:

Check warning on line 3 in .github/workflows/squad-insider-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

3:1 [truthy] truthy value should be one of [false, true]
push:
Expand All @@ -21,13 +21,13 @@
global-json-file: global.json

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v4.5.0
uses: gittools/actions/gitversion/setup@v4.7.0
with:
versionSpec: '6.x'

- name: Determine version
id: gitversion
uses: gittools/actions/gitversion/execute@v4.5.0
uses: gittools/actions/gitversion/execute@v4.7.0
with:
useConfigFile: true
configFilePath: GitVersion.yml
Expand All @@ -44,13 +44,13 @@

- name: Run tests
run: |
dotnet test tests/Architecture.Tests --configuration Release --no-build --no-restore \

Check failure on line 47 in .github/workflows/squad-insider-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

47:81 [line-length] line too long (96 > 80 characters)
--logger "trx;LogFileName=arch-results.trx"
dotnet test tests/Domain.Tests --configuration Release --no-build --no-restore \

Check failure on line 49 in .github/workflows/squad-insider-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

49:81 [line-length] line too long (90 > 80 characters)
--logger "trx;LogFileName=domain-results.trx"
dotnet test tests/Web.Tests --configuration Release --no-build --no-restore \

Check failure on line 51 in .github/workflows/squad-insider-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

51:81 [line-length] line too long (87 > 80 characters)
--logger "trx;LogFileName=web-results.trx"
dotnet test tests/Web.Tests.Integration --configuration Release --no-build --no-restore \

Check failure on line 53 in .github/workflows/squad-insider-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

53:81 [line-length] line too long (99 > 80 characters)
--logger "trx;LogFileName=web-integration-results.trx"

- name: Create pre-release tag and GitHub Release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/squad-milestone-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Squad Milestone Release

Check warning on line 1 in .github/workflows/squad-milestone-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

1:1 [document-start] missing document start "---"

on:

Check warning on line 3 in .github/workflows/squad-milestone-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

3:1 [truthy] truthy value should be one of [false, true]
workflow_dispatch:
Expand Down Expand Up @@ -33,13 +33,13 @@
global-json-file: global.json

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v4.5.0
uses: gittools/actions/gitversion/setup@v4.7.0
with:
versionSpec: '6.x'

- name: Determine current version
id: gitversion
uses: gittools/actions/gitversion/execute@v4.5.0
uses: gittools/actions/gitversion/execute@v4.7.0
with:
useConfigFile: true
configFilePath: GitVersion.yml
Expand All @@ -52,8 +52,8 @@
MINOR: ${{ steps.gitversion.outputs.minor }}
PATCH: ${{ steps.gitversion.outputs.patch }}
run: |
# Base off last tag to avoid double-counting GitVersion's auto-increment

Check failure on line 55 in .github/workflows/squad-milestone-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

55:81 [line-length] line too long (82 > 80 characters)
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")

Check failure on line 56 in .github/workflows/squad-milestone-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

56:81 [line-length] line too long (81 > 80 characters)
BASE=${LAST_TAG#v}
BMAJ=$(echo "$BASE" | cut -d. -f1)
BMIN=$(echo "$BASE" | cut -d. -f2)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/squad-promote.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Squad Promote

Check warning on line 1 in .github/workflows/squad-promote.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

1:1 [document-start] missing document start "---"

# Opens a PR from dev → main for release promotion.
# After the PR is merged, use squad-milestone-release.yml to tag and publish.

on:

Check warning on line 6 in .github/workflows/squad-promote.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

6:1 [truthy] truthy value should be one of [false, true]
workflow_dispatch:
inputs:
dry_run:
Expand Down Expand Up @@ -34,13 +34,13 @@
global-json-file: global.json

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v4.5.0
uses: gittools/actions/gitversion/setup@v4.7.0
with:
versionSpec: '6.x'

- name: Determine version
id: gitversion
uses: gittools/actions/gitversion/execute@v4.5.0
uses: gittools/actions/gitversion/execute@v4.7.0
with:
useConfigFile: true
configFilePath: GitVersion.yml
Expand Down Expand Up @@ -82,13 +82,13 @@
$(git log origin/main..origin/dev --oneline | head -50)

---
_After merging, run **squad-milestone-release** to tag and publish the GitHub Release._

Check failure on line 85 in .github/workflows/squad-promote.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

85:81 [line-length] line too long (97 > 80 characters)
EOF

# Check if a promote PR already exists
EXISTING=$(gh pr list --base main --head dev --state open --json number --jq '.[0].number // empty' || true)

Check failure on line 89 in .github/workflows/squad-promote.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

89:81 [line-length] line too long (118 > 80 characters)
if [ -n "$EXISTING" ]; then
echo "ℹ️ Promote PR #$EXISTING already exists — updating description"

Check failure on line 91 in .github/workflows/squad-promote.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

91:81 [line-length] line too long (81 > 80 characters)
gh pr edit "$EXISTING" \
--title "chore: promote dev → main (v${VERSION})" \
--body-file "$BODY_FILE"
Expand All @@ -108,4 +108,4 @@
if: ${{ inputs.dry_run == 'true' }}
run: |
echo "🔍 Dry run complete — no PR created."
echo "Would promote ${{ steps.diff.outputs.ahead }} commit(s) as v${{ steps.gitversion.outputs.semVer }}"

Check failure on line 111 in .github/workflows/squad-promote.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

111:81 [line-length] line too long (115 > 80 characters)
4 changes: 2 additions & 2 deletions .github/workflows/squad-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Squad Release

Check warning on line 1 in .github/workflows/squad-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

1:1 [document-start] missing document start "---"

on:

Check warning on line 3 in .github/workflows/squad-release.yml

View workflow job for this annotation

GitHub Actions / lint-yaml

3:1 [truthy] truthy value should be one of [false, true]
push:
Expand All @@ -21,13 +21,13 @@
global-json-file: global.json

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v4.5.0
uses: gittools/actions/gitversion/setup@v4.7.0
with:
versionSpec: '6.x'

- name: Determine version
id: gitversion
uses: gittools/actions/gitversion/execute@v4.5.0
uses: gittools/actions/gitversion/execute@v4.7.0
with:
useConfigFile: true
configFilePath: GitVersion.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/squad-standard-lint-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: "22"
- name: Run markdownlint
Expand Down
Loading