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
5 changes: 3 additions & 2 deletions projects/_template/pr-management-quick-merge-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ skill. This is the **`_template` default**; new adopters copy it into their own
`<project-config>/pr-management-quick-merge-config.md` and tune the thresholds
and path globs for their repository layout.

The default globs below are shaped for an Apache-Airflow-like monorepo; an
The default globs below are shaped for a Python monorepo; an
adopter with a different layout replaces them wholesale. When a field is absent,
the skill falls back to the default noted in its row.

Expand Down Expand Up @@ -95,7 +95,8 @@ spelling_wordlist.txt
**/tests/**
**/test_*.py
**/*_test.py
**/example_dags/**
**/examples/**
**/example_*/**
```

### `deny_globs` — absolute disqualifiers (consequential areas; one match drops the PR even at one line)
Expand Down
4 changes: 2 additions & 2 deletions projects/_template/reviewer-roster.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Shape per entry:
- handle: github-login # GitHub @handle (required)
areas: # list of areas / path prefixes / labels
- component:scheduler
- airflow/jobs/
- src/scheduler/
max_reviews: 5 # optional; default 5
-->

Expand All @@ -48,7 +48,7 @@ Shape per entry:
## Notes

- `areas` entries may be component labels (e.g. `component:scheduler`),
path prefixes (e.g. `airflow/jobs/`), or free-form area names that
path prefixes (e.g. `src/scheduler/`), or free-form area names that
match the labels used in this project's issue tracker.
- `max_reviews` is the maximum number of open review requests this
reviewer is comfortable holding simultaneously. When their current
Expand Down
2 changes: 1 addition & 1 deletion projects/_template/security-intake-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ authoritative home for those values. This file does two things:

New adopters: copy this file into your own
`<project-config>/security-intake-config.md` and replace every `TODO`.
The ASF defaults reproduce the Apache Airflow security-team workflow
The ASF defaults reproduce the standard ASF security-team workflow
unchanged; override only the fields that differ for your project.

Related scaffolds in the same adopter directory:
Expand Down
3 changes: 2 additions & 1 deletion skills/pr-management-quick-merge/candidate-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ tier_b_allow_globs:
- "**/tests/**"
- "**/test_*.py"
- "**/*_test.py"
- "**/example_dags/**"
- "**/examples/**"
- "**/example_*/**"

deny_globs: # absolute disqualifiers, even at one line
- "**/migrations/**"
Expand Down