This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
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
Jared Murrell
authored
Aug 11, 2020
1 parent
bd28dfc
commit 1cd202c
Showing
1 changed file
with
43 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# This is a GitHub App Manifest. These settings will be used by default when | ||
# initially configuring your GitHub App. | ||
# | ||
# NOTE: changing this file will not update your GitHub App settings. | ||
# You must visit github.com/settings/apps/your-app-name to edit them. | ||
# | ||
# Read more about configuring your GitHub App: | ||
# https://probot.github.io/docs/development/#configuring-a-github-app | ||
# | ||
# Read more about GitHub App Manifests: | ||
# https://developer.github.com/apps/building-github-apps/creating-github-apps-from-a-manifest/ | ||
|
||
name: Rally + GitHub | ||
url: https://github.com/github/rally | ||
description: An app to integrate GitHub Pull Requests with Broadcom's Rally | ||
public: true | ||
|
||
default_events: | ||
- check_run | ||
- check_suite | ||
- pull_request | ||
- push | ||
|
||
default_permissions: | ||
# Checks on code. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-checks | ||
checks: write | ||
|
||
# Repository contents, commits, branches, downloads, releases, and merges. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-contents | ||
contents: read | ||
|
||
# Issues and related comments, assignees, labels, and milestones. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-issues | ||
issues: write | ||
|
||
# Search repositories, list collaborators, and access repository metadata. | ||
# https://developer.github.com/v3/apps/permissions/#metadata-permissions | ||
metadata: read | ||
|
||
# Pull requests and related comments, assignees, labels, milestones, and merges. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-pull-requests | ||
pull_requests: write |