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
10 changes: 8 additions & 2 deletions .github/workflows/architecture-records.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@
# docs/: it scans every tracked file for retired `ADR-NNNN` / `SDD-NNNN`
# identifiers, which land in PHP comments and tests as often as in Markdown.
#
# Deliberately no filters and no dependencies beyond PHP: the whole job is a
# Only agent-skill updates are filtered. No dependencies beyond PHP: the whole job is a
# checkout plus one PHP script with no Composer packages, so running it on
# everything costs seconds.
# code and architecture-record changes costs seconds.

name: Architecture records

on:
pull_request:
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
push:
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
branches:
- main

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: CI
on:
pull_request:
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
- '**.md'
- 'docs/**'
- '.github/*.md'
Expand All @@ -13,6 +15,8 @@ on:
branches:
- main
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
- '**.md'
- 'docs/**'
- '.github/*.md'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/phpmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ name: PHPMD

on:
push:
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
branches: [ "main" ]
pull_request:
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pr-playground-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: PR Playground Preview

on:
pull_request:
paths-ignore:
- '.agents/skills/**'
- '.claude/skills/**'
types: [opened, synchronize, reopened]

concurrency:
Expand Down
Loading