Ai folio to main #1
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant improvements to CI/CD automation, development environment setup, and repository maintenance. It adds multiple GitHub Actions workflows for deploying, testing, and maintaining the site and Docker images, enhances the devcontainer configuration for local development, and introduces files to improve code quality and collaboration.
CI/CD Workflows
Added comprehensive GitHub Actions workflows for deploying the site (
deploy.yml), building and publishing Docker images on branch and tag pushes (deploy-image.yml,deploy-docker-tag.yml), optimizing Docker images with Docker Slim (docker-slim.yml), checking for broken links (broken-links.yml,broken-links-site.yml), and running accessibility tests with Axe (axe.yml). These workflows automate build, test, and deployment processes, improving reliability and developer productivity. [1] [2] [3] [4] [5] [6] [7]Added CodeQL workflow for advanced code scanning of JavaScript/TypeScript and Ruby code, enhancing security and code quality.
Development Environment & Tooling
Updated
.devcontainer/devcontainer.jsonto use a more flexible image reference, install essential development packages, enable Prettier formatting, and configure VSCode extensions and settings for a better developer experience.Added
.dockerignoreto exclude build output, git data, and assets from Docker context, reducing image size and build time.Enforced LF line endings for shell scripts in
.gitattributesto ensure cross-platform compatibility, especially for Docker on Windows.Repository Maintenance & Collaboration
Added
.git-blame-ignore-revsto help contributors ignore bulk formatting commits in blame output, improving code review and history navigation.Added
.github/stale.ymlto automatically mark and close stale issues, keeping the issue tracker clean and focused.Added
.github/release.ymlto categorize changelog entries for releases based on labels, streamlining release notes and communication.Cleanup
.github/dependabot.yml, possibly to consolidate dependency update management or reduce workflow noise.