-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add .asf.yaml for repository configuration #3400
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
deacon-mp
wants to merge
1
commit into
apache:master
Choose a base branch
from
deacon-mp:chore/add-asf-yaml
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+63
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| # .asf.yaml — Apache Infra self-service config for github.com/apache/caldera | ||
| # Reference: https://github.com/apache/infrastructure-asfyaml · https://infra.apache.org/asf-yaml.html | ||
| # This file lives at the repo ROOT and its `notifications:` block ONLY takes effect on the | ||
| # DEFAULT branch (master). Repo metadata/features (github:) are not branch-specific. | ||
|
|
||
| # --- REQUIRED IN PRACTICE: route GitHub activity to the archived ASF mailing lists ----------------- | ||
| # Podling governance expects development to be visible/archived on-list. Caldera's real lists are | ||
| # dev@/users@/commits@/private@caldera.apache.org (no dedicated issues@/notifications@ list yet), so | ||
| # commit traffic -> commits@ and issue/PR traffic -> dev@ (request a notifications@ list from Infra | ||
| # later if dev@ gets too noisy). | ||
| notifications: | ||
| commits: commits@caldera.apache.org | ||
| issues: dev@caldera.apache.org | ||
| pullrequests: dev@caldera.apache.org | ||
| # jobs: dev@caldera.apache.org # GitHub Actions build status — enable if the project wants CI failures on-list | ||
| # jira_options: link label comment # only if Caldera adopts ASF Jira; it uses GitHub Issues, so omitted | ||
|
|
||
| # --- RECOMMENDED: repo metadata, features, and merge policy ---------------------------------------- | ||
| github: | ||
| description: "Automated Adversary Emulation Platform" | ||
| homepage: https://caldera.apache.org/ # update from the old caldera.mitre.org | ||
| # NOTE: `labels:` REPLACES the repo's GitHub topics wholesale — keep the list intentional. | ||
| labels: | ||
| - adversary-emulation | ||
| - security-automation | ||
| - red-team | ||
| - mitre-attack | ||
| - cybersecurity | ||
| - security-testing | ||
| - caldera | ||
|
|
||
| features: | ||
| issues: true | ||
| wiki: true | ||
| projects: false | ||
| discussions: true | ||
|
|
||
| # Caldera merges via squash today; squash-only keeps master history linear. | ||
| enabled_merge_buttons: | ||
| squash: true | ||
| merge: false | ||
| rebase: false | ||
|
|
||
| pull_requests: | ||
| del_branch_on_merge: true # tidy: delete the source branch after merge | ||
| allow_auto_merge: false | ||
| allow_update_branch: true | ||
|
|
||
| dependabot_alerts: true | ||
| dependabot_updates: false | ||
|
|
||
| # --- OPTIONAL self-serve branch protection (enable once the project agrees on required checks) ---- | ||
| # protected_branches: | ||
| # master: | ||
| # required_pull_request_reviews: | ||
| # required_approving_review_count: 1 | ||
| # dismiss_stale_reviews: true | ||
| # required_status_checks: | ||
| # strict: true | ||
| # contexts: | ||
| # - <exact CI check name, e.g. the quality.yml job> | ||
| # required_conversation_resolution: true | ||
| # # required_signatures: true # only if all committers sign commits — can block merges otherwise | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should protect your main/master branch even if you don't configure status checks (yet)