From f131bbade52c58fafe496cdc161a9d9cab51b140 Mon Sep 17 00:00:00 2001 From: John Ajera <37360952+jajera@users.noreply.github.com> Date: Sat, 26 Apr 2025 05:31:46 +0000 Subject: [PATCH] chore: configure workflow and profile adds workflow and profile --- .github/profile/README.md | 14 ++++++++++++++ .github/workflows/commitmsg-conform.yml | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/profile/README.md create mode 100644 .github/workflows/commitmsg-conform.yml 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