Skip to content

chore: add project scaffolding and CI/CD workflows#1

Merged
Trozz merged 7 commits intomainfrom
feature/project-scaffolding
Mar 13, 2026
Merged

chore: add project scaffolding and CI/CD workflows#1
Trozz merged 7 commits intomainfrom
feature/project-scaffolding

Conversation

@Trozz
Copy link
Contributor

@Trozz Trozz commented Mar 13, 2026

Summary

  • Add Apache-2.0 license, updated .gitignore, and .pre-commit-config.yaml (ruff, gitleaks, standard hooks)
  • Add PR guidance, PR template, and GitHub Actions workflows for pull request testing, lint/security scanning, stable releases, and release candidates
  • Release versioning auto-detects semver bump from conventional commits (feat: = minor, fix: = patch, !/BREAKING CHANGE = major)

Test plan

  • Verify .pre-commit-config.yaml hooks run successfully with pre-commit run --all-files
  • Confirm pull_request.yml triggers on a test PR and runs pytest across Python 3.9/3.12/3.13
  • Confirm lint_and_scan.yml runs ruff and gitleaks checks
  • Validate github_release.yml manual dispatch with auto bump detection
  • Validate github_release_rc.yml creates RC tags on push to main

Add gitignore updates, Apache-2.0 license, pre-commit config, PR
guidance, PR template, and GitHub Actions workflows for releases,
release candidates, pull request testing, and lint/security scanning.
Release versioning uses conventional commits for semver detection.
Copilot AI review requested due to automatic review settings March 13, 2026 09:04
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds baseline repository scaffolding (license, ignore rules, contributor guidance) and introduces GitHub Actions workflows for PR validation, lint/security scanning, and automated release/RC publishing with conventional-commit-based semver bumping.

Changes:

  • Add contributor PR guidance and a default PR template.
  • Add pre-commit configuration (ruff + gitleaks + standard hooks) and expand .gitignore.
  • Add CI workflows for PR tests, lint/security scanning, and release/RC automation.

Reviewed changes

Copilot reviewed 8 out of 9 changed files in this pull request and generated 7 comments.

Show a summary per file
File Description
PR_GUIDANCE.md Documents local dev/PR expectations and release process.
LICENSE Introduces Apache-2.0 licensing text for the repository.
.pre-commit-config.yaml Configures pre-commit hooks (including ruff and gitleaks).
.gitignore Expands ignored artifacts (envs, caches, lockfiles, Pulumi variants).
.github/workflows/pull_request.yml Runs pytest on PRs across a Python version matrix using uv.
.github/workflows/lint_and_scan.yml Adds ruff lint/format checks plus gitleaks and pip-audit scanning.
.github/workflows/github_release_rc.yml Automates RC tagging and GitHub pre-releases on pushes to main.
.github/workflows/github_release.yml Automates stable releases via tag push or manual dispatch with bump detection.
.github/pull_request_template.md Adds a structured template for PR authors.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

You can also share your feedback on Copilot code review. Take the survey.

Trozz and others added 6 commits March 13, 2026 09:11
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Manual dispatch now only creates and pushes the tag, then exits.
The tag-push trigger handles changelog generation and release creation,
avoiding a double run.
@Trozz Trozz merged commit c0024e7 into main Mar 13, 2026
5 checks passed
@Trozz Trozz deleted the feature/project-scaffolding branch March 13, 2026 09:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants