Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/camara-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# CAMARA Validation Framework — Caller Workflow
#
# Copy this file to .github/workflows/camara-validation.yml in your
# API repository. No modification needed — all configuration is
# centralized in the tooling repository.
#
# This replaces the v0 pr_validation_caller.yml for repositories that
# have opted into the v1 validation framework.

name: CAMARA Validation

on:
pull_request:
branches:
- main
- release-snapshot/**
- maintenance/**
workflow_dispatch:

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

permissions:
checks: write
pull-requests: write
issues: write
contents: read
statuses: write
id-token: write

jobs:
validation:
uses: camaraproject/tooling/.github/workflows/validation.yml@v1-rc
secrets: inherit
6 changes: 2 additions & 4 deletions .github/workflows/release-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# - Push to main: when release-plan.yaml changes (auto sync-issue)
# - Manual: workflow_dispatch triggers sync-issue (reads from release-plan.yaml)

name: Release Automation
name: CAMARA Release Automation

on:
# Slash commands via issue comments
Expand Down Expand Up @@ -80,7 +80,5 @@ jobs:
github.event.pull_request.merged == true &&
startsWith(github.event.pull_request.base.ref, 'release-snapshot/'))

uses: camaraproject/tooling/.github/workflows/release-automation-reusable.yml@ra-v1-rc
# with:
# tooling_ref_override: "0123456789abcdef0123456789abcdef01234567" # Optional break-glass SHA override (requires workflow file change)
uses: camaraproject/tooling/.github/workflows/release-automation-reusable.yml@v1-rc
secrets: inherit
Loading