070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
# Placeholder for PR Explore Agent.
|
|
#
|
|
# GitHub only reliably triggers pull_request workflows once a workflow
|
|
# file with the same path exists on the default branch. The real
|
|
# generated gh-aw workflow is introduced by PR #2604; this placeholder
|
|
# is intentionally inert and can be replaced by the compiled workflow
|
|
# when that PR merges.
|
|
name: "PR Explore Agent - placeholder"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
paths:
|
|
- "apps/web/**"
|
|
- "apps/landing-page/**"
|
|
- "design-templates/open-design-landing/**"
|
|
- "skills/**"
|
|
- "design-systems/**"
|
|
- "craft/**"
|
|
- "templates/**"
|
|
- "package.json"
|
|
- "pnpm-lock.yaml"
|
|
- "pnpm-workspace.yaml"
|
|
- ".github/workflows/agent-pr-explore.lock.yml"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
placeholder:
|
|
name: Placeholder
|
|
if: ${{ github.event_name == 'agent_pr_explore_placeholder_never' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "agent-pr-explore placeholder only"
|