Skip to content

Commit 3ea9aa0

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents b585f14 + 3b000fc commit 3ea9aa0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+558
-175
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Global code owner
2+
* @localden
3+

.github/workflows/docs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,4 @@ jobs:
6565
- name: Deploy to GitHub Pages
6666
id: deployment
6767
uses: actions/deploy-pages@v4
68-
with:
69-
enablement: true
68+

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,4 @@ jobs:
5757
run: |
5858
chmod +x .github/workflows/scripts/update-version.sh
5959
.github/workflows/scripts/update-version.sh ${{ steps.get_tag.outputs.new_version }}
60+

.github/workflows/scripts/check-release-exists.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ if gh release view "$VERSION" >/dev/null 2>&1; then
1818
else
1919
echo "exists=false" >> $GITHUB_OUTPUT
2020
echo "Release $VERSION does not exist, proceeding..."
21-
fi
21+
fi

.github/workflows/scripts/create-github-release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ VERSION="$1"
1616
TAG_PREFIX="agentic-sdlc-v"
1717

1818
# Remove prefix from version for release title
19-
VERSION_NO_PREFIX=${VERSION#${TAG_PREFIX}}
19+
VERSION_NO_V=${VERSION#v}
2020

2121
ASSETS=()
2222
AGENTS=(copilot claude gemini cursor-agent opencode qwen windsurf codex kilocode auggie roo codebuddy q)
@@ -34,5 +34,5 @@ for agent in "${AGENTS[@]}"; do
3434
done
3535

3636
gh release create "$VERSION" "${ASSETS[@]}" \
37-
--title "Agentic SDLC Spec Kit Templates - $VERSION_NO_PREFIX" \
38-
--notes-file release_notes.md
37+
--title "Agentic SDLC Spec Kit Templates - $VERSION_NO_V" \
38+
--notes-file release_notes.md

.github/workflows/scripts/generate-release-notes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ This is the latest set of releases that you can use with your agent of choice. W
3434
EOF
3535

3636
echo "Generated release notes:"
37-
cat release_notes.md
37+
cat release_notes.md

.github/workflows/scripts/get-next-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ PATCH=$((PATCH + 1))
2727
NEW_VERSION="${TAG_PREFIX}$MAJOR.$MINOR.$PATCH"
2828

2929
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
30-
echo "New version will be: $NEW_VERSION"
30+
echo "New version will be: $NEW_VERSION"

.github/workflows/scripts/update-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ if [ -f "pyproject.toml" ]; then
2222
echo "Updated pyproject.toml version to $PYTHON_VERSION (for release artifacts only)"
2323
else
2424
echo "Warning: pyproject.toml not found, skipping version update"
25-
fi
25+
fi

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ env/
4242
# Spec Kit-specific files
4343
.genreleases/
4444
*.zip
45-
sdd-*/
45+
sdd-*/

0 commit comments

Comments
 (0)