-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -15,12 +15,20 @@ | |
# limitations under the License. | ||
# | ||
|
||
# `.asf.yaml` documentation: https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features | ||
# `.asf.yaml` is a branch-specific YAML configuration file for Git repositories to control features such as notifications, GitHub settings, etc. | ||
# See its documentation for details: https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features | ||
|
||
# Bare minimum `notifications` to | ||
# | ||
# 1. Forward GitHub _activity_ to `notifications@` | ||
# 2. Forward commits to `commits@` | ||
# 3. Forward `dependabot` PRs to `robots@` | ||
# | ||
# Note that `notifications` are merged with the defaults accessible from: https://gitbox.apache.org/schemes.cgi?logging-log4j-transform | ||
notifications: | ||
# GitHub already provides notifications for PRs and issues. | ||
# Please don't duplicate that noise here! | ||
commits: [email protected] | ||
issues: [email protected] | ||
pullrequests: [email protected] | ||
pullrequests_bot_dependabot: [email protected] | ||
|
||
github: | ||
|