diff --git a/.github/profile/README.md b/.github/profile/README.md new file mode 100644 index 0000000..4494661 --- /dev/null +++ b/.github/profile/README.md @@ -0,0 +1,14 @@ +# Welcome to Cloud Build Lab 👋 + +Building reusable GitHub Actions and simple CI/CD examples to speed up development workflows. + +--- + +## 🌟 What We Do + +- Develop **reusable GitHub Actions** for common automation tasks. +- Share **basic CI/CD examples** following best practices. + +--- + +> ✨ *Automation made simple.* ✨ diff --git a/.github/workflows/commitmsg-conform.yml b/.github/workflows/commitmsg-conform.yml new file mode 100644 index 0000000..2a31804 --- /dev/null +++ b/.github/workflows/commitmsg-conform.yml @@ -0,0 +1,14 @@ +name: Commit Message Conformance + +on: + pull_request: {} + +permissions: + statuses: write + checks: write + contents: read + pull-requests: read + +jobs: + commitmsg-conform: + uses: cloudbuildlab/actions/.github/workflows/commitmsg-conform.yml@v0