This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into spin_group
- Loading branch information
Showing
1,363 changed files
with
73,234 additions
and
24,720 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
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,19 @@ | ||
# By default, the mathlib maintainers own everything in the repo. | ||
# Later matches will take precedence over this match. | ||
|
||
# Disabled until we have better coverage by other patterns. Reenable in the future. | ||
# * @leanprover-community/mathlib-maintainers | ||
|
||
src/category_theory/ @leanprover-community/mathlib-CT | ||
|
||
src/measure_theory/ @leanprover-community/mathlib-meas | ||
|
||
src/algebraic_topology/ @leanprover-community/mathlib-CT # for now the category theory team can take care of this | ||
|
||
src/algebraic_geometry/ @leanprover-community/mathlib-AG | ||
|
||
src/combinatorics/ @leanprover-community/mathlib-CO | ||
|
||
src/probability/ @leanprover-community/mathlib-PR | ||
|
||
src/tactic/ @leanprover-community/mathlib-meta |
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
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
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
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
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,42 @@ | ||
name: Maintainer merge (comment) | ||
|
||
on: | ||
issue_comment: | ||
types: [created, edited] | ||
|
||
jobs: | ||
ping_zulip: | ||
name: Ping maintainers on Zulip | ||
if: (github.event.issue.pull_request != 'null') && (startsWith(github.event.comment.body, 'maintainer merge') || contains(toJSON(github.event.comment.body), '\r\nmaintainer merge')) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check whether user is part of mathlib-reviewers team | ||
uses: TheModdingInquisition/[email protected] | ||
with: | ||
organization: 'leanprover-community' | ||
team: 'mathlib-reviewers' # required. The team to check for | ||
token: ${{ secrets.MATHLIB_REVIEWERS_TEAM_KEY }} # required. Personal Access Token with the `read:org` permission | ||
comment: 'You seem to not be authorized' # optional. A comment to post if the user is not part of the team. | ||
# This feature is only applicable in an issue (or PR) context | ||
exit: true # optional. If the action should exit if the user is not part of the team. Defaults to true. | ||
|
||
- name: Send message on Zulip | ||
uses: zulip/github-actions-zulip/send-message@v1 | ||
with: | ||
api-key: ${{ secrets.ZULIP_API_KEY }} | ||
email: '[email protected]' | ||
organization-url: 'https://leanprover.zulipchat.com' | ||
to: 'mathlib reviewers' | ||
type: 'stream' | ||
topic: 'maintainer merge' | ||
content: | | ||
${{ format('{0} requested a maintainer merge on PR #{1}:', github.event.comment.user.login, github.event.issue.number) }} | ||
> ${{ github.event.issue.title }} | ||
- name: Add comment to PR | ||
uses: GrantBirki/[email protected] | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
🚀 Pull request has been placed on the maintainer queue by ${{ github.event.comment.user.login }}. |
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,40 @@ | ||
name: Maintainer merge (review) | ||
|
||
on: | ||
pull_request_review: | ||
types: [submitted, edited] | ||
|
||
jobs: | ||
ping_zulip: | ||
name: Ping maintainers on Zulip | ||
if: (github.event.issue.pull_request != 'null') && (startsWith(github.event.review.body, 'maintainer merge') || contains(toJSON(github.event.review.body), '\r\nmaintainer merge')) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check whether user is part of mathlib-reviewers team | ||
uses: TheModdingInquisition/[email protected] | ||
with: | ||
organization: 'leanprover-community' | ||
team: 'mathlib-reviewers' # required. The team to check for | ||
token: ${{ secrets.MATHLIB_REVIEWERS_TEAM_KEY }} # required. Personal Access Token with the `read:org` permission | ||
exit: true # optional. If the action should exit if the user is not part of the team. Defaults to true. | ||
|
||
- name: Send message on Zulip | ||
uses: zulip/github-actions-zulip/send-message@v1 | ||
with: | ||
api-key: ${{ secrets.ZULIP_API_KEY }} | ||
email: '[email protected]' | ||
organization-url: 'https://leanprover.zulipchat.com' | ||
to: 'mathlib reviewers' | ||
type: 'stream' | ||
topic: 'maintainer merge' | ||
content: | | ||
${{ format('{0} requested a maintainer merge on PR #{1}:', github.event.review.user.login, github.event.pull_request.number) }} | ||
> ${{ github.event.pull_request.title }} | ||
- name: Add comment to PR | ||
uses: GrantBirki/[email protected] | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
🚀 Pull request has been placed on the maintainer queue by ${{ github.event.review.user.login }}. |
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,40 @@ | ||
name: Maintainer merge (review comment) | ||
|
||
on: | ||
pull_request_review_comment: | ||
types: [created, edited] | ||
|
||
jobs: | ||
ping_zulip: | ||
name: Ping maintainers on Zulip | ||
if: (github.event.issue.pull_request != 'null') && (startsWith(github.event.comment.body, 'maintainer merge') || contains(toJSON(github.event.comment.body), '\r\nmaintainer merge')) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check whether user is part of mathlib-reviewers team | ||
uses: TheModdingInquisition/[email protected] | ||
with: | ||
organization: 'leanprover-community' | ||
team: 'mathlib-reviewers' # required. The team to check for | ||
token: ${{ secrets.MATHLIB_REVIEWERS_TEAM_KEY }} # required. Personal Access Token with the `read:org` permission | ||
exit: true # optional. If the action should exit if the user is not part of the team. Defaults to true. | ||
|
||
- name: Send message on Zulip | ||
uses: zulip/github-actions-zulip/send-message@v1 | ||
with: | ||
api-key: ${{ secrets.ZULIP_API_KEY }} | ||
email: '[email protected]' | ||
organization-url: 'https://leanprover.zulipchat.com' | ||
to: 'mathlib reviewers' | ||
type: 'stream' | ||
topic: 'maintainer merge' | ||
content: | | ||
${{ format('{0} requested a maintainer merge on PR #{1}:', github.event.comment.user.login, github.event.pull_request.number) }} | ||
> ${{ github.event.pull_request.title }} | ||
- name: Add comment to PR | ||
uses: GrantBirki/[email protected] | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
🚀 Pull request has been placed on the maintainer queue by ${{ github.event.comment.user.login }}. |
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 |
---|---|---|
|
@@ -9,3 +9,4 @@ all.lean | |
*~ | ||
.DS_Store | ||
*.lock | ||
port_status.yaml |
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
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
Oops, something went wrong.