Add paid-media category to scripts and CI workflow
Prepares infrastructure for the upcoming Paid Media Division (PR #83). Registers paid-media in convert.sh, lint-agents.sh, install.sh, and the lint-agents GitHub Actions workflow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
3
.github/workflows/lint-agents.yml
vendored
3
.github/workflows/lint-agents.yml
vendored
@@ -6,6 +6,7 @@ on:
|
|||||||
- 'design/**'
|
- 'design/**'
|
||||||
- 'engineering/**'
|
- 'engineering/**'
|
||||||
- 'marketing/**'
|
- 'marketing/**'
|
||||||
|
- 'paid-media/**'
|
||||||
- 'product/**'
|
- 'product/**'
|
||||||
- 'project-management/**'
|
- 'project-management/**'
|
||||||
- 'testing/**'
|
- 'testing/**'
|
||||||
@@ -27,7 +28,7 @@ jobs:
|
|||||||
id: changed
|
id: changed
|
||||||
run: |
|
run: |
|
||||||
FILES=$(git diff --name-only --diff-filter=ACMR origin/${{ github.base_ref }}...HEAD -- \
|
FILES=$(git diff --name-only --diff-filter=ACMR origin/${{ github.base_ref }}...HEAD -- \
|
||||||
'design/*.md' 'engineering/*.md' 'marketing/*.md' 'product/*.md' \
|
'design/*.md' 'engineering/*.md' 'marketing/*.md' 'paid-media/*.md' 'product/*.md' \
|
||||||
'project-management/*.md' 'testing/*.md' 'support/*.md' \
|
'project-management/*.md' 'testing/*.md' 'support/*.md' \
|
||||||
'spatial-computing/*.md' 'specialized/*.md' 'strategy/*.md')
|
'spatial-computing/*.md' 'specialized/*.md' 'strategy/*.md')
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ OUT_DIR="$REPO_ROOT/integrations"
|
|||||||
TODAY="$(date +%Y-%m-%d)"
|
TODAY="$(date +%Y-%m-%d)"
|
||||||
|
|
||||||
AGENT_DIRS=(
|
AGENT_DIRS=(
|
||||||
design engineering marketing product project-management
|
design engineering marketing paid-media product project-management
|
||||||
testing support spatial-computing specialized
|
testing support spatial-computing specialized
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -259,7 +259,7 @@ install_claude_code() {
|
|||||||
local count=0
|
local count=0
|
||||||
mkdir -p "$dest"
|
mkdir -p "$dest"
|
||||||
local dir f first_line
|
local dir f first_line
|
||||||
for dir in design engineering marketing product project-management \
|
for dir in design engineering marketing paid-media product project-management \
|
||||||
testing support spatial-computing specialized; do
|
testing support spatial-computing specialized; do
|
||||||
[[ -d "$REPO_ROOT/$dir" ]] || continue
|
[[ -d "$REPO_ROOT/$dir" ]] || continue
|
||||||
while IFS= read -r -d '' f; do
|
while IFS= read -r -d '' f; do
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ AGENT_DIRS=(
|
|||||||
design
|
design
|
||||||
engineering
|
engineering
|
||||||
marketing
|
marketing
|
||||||
|
paid-media
|
||||||
product
|
product
|
||||||
project-management
|
project-management
|
||||||
testing
|
testing
|
||||||
|
|||||||
Reference in New Issue
Block a user