-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: umairjavaid <[email protected]> Co-authored-by: Gadri Ebenezer <[email protected]> Co-authored-by: nathzi1505 <[email protected]> Co-authored-by: muzakkirhussain011 <[email protected]> Co-authored-by: AliTarekk <[email protected]> Co-authored-by: ivy-branch <[email protected]> Co-authored-by: Shreyansh Bardia <[email protected]> Co-authored-by: Vaatsalya <[email protected]> Co-authored-by: Akshay <[email protected]> Co-authored-by: ReneFabricius <[email protected]> Co-authored-by: Vaibhav Deshpande <[email protected]> Co-authored-by: Vaibhav Deshpande <[email protected]> Co-authored-by: Jomer Barcenilla <[email protected]> Co-authored-by: Nripesh Niketan <[email protected]> Co-authored-by: Kareem Morsy <[email protected]> Co-authored-by: Lucas Alava Peña <[email protected]> Co-authored-by: Sai-Suraj-27 <[email protected]> Co-authored-by: Sulaiman Mutawalli <[email protected]> Co-authored-by: RashulChutani <[email protected]> Co-authored-by: Moses Daudu <[email protected]> Co-authored-by: Ahmed Hisham <[email protected]> Co-authored-by: AnnaTz <[email protected]> Co-authored-by: Indraneel kumar <[email protected]> Co-authored-by: hirwa-nshuti <[email protected]> Co-authored-by: Javeria-Siddique <[email protected]> Co-authored-by: Peter Kiprop <[email protected]> Co-authored-by: Humza Tareen <[email protected]> Co-authored-by: Nitesh Kesharwani <[email protected]> Co-authored-by: Bhushan Srivastava <[email protected]> Co-authored-by: hmahmood24 <[email protected]> Co-authored-by: Daniel4078 <[email protected]> Co-authored-by: Mostafa Hani <[email protected]> Co-authored-by: Mostafa Hany <[email protected]> Co-authored-by: Vismay Suramwar <[email protected]> Co-authored-by: Eddy Oyieko <[email protected]> Co-authored-by: Madjid Chergui <[email protected]> Co-authored-by: Mohammed Ayman <[email protected]> Co-authored-by: akshatvishu <[email protected]> Co-authored-by: MahmoudAshraf97 <[email protected]> Co-authored-by: Yusha Arif <[email protected]> Co-authored-by: KHETHAN <[email protected]> Co-authored-by: khethan123 <[email protected]> Co-authored-by: NripeshN <[email protected]> Co-authored-by: Aaryan562 <[email protected]> Co-authored-by: Ario Zareinia <[email protected]> Co-authored-by: MahadShahid8 <[email protected]> Co-authored-by: Dharshannan Sugunan <[email protected]> Co-authored-by: RickSanchezStoic <[email protected]> Co-authored-by: Abdurrahman Rajab <[email protected]> Co-authored-by: Waqar Ahmed <[email protected]> Co-authored-by: Saeed Ashraf <[email protected]> Co-authored-by: Guilherme Lucas <[email protected]> Co-authored-by: Anwaar Khalid <[email protected]> Co-authored-by: Zaeem Ansari <[email protected]> Co-authored-by: Muhammad Sameer Khan <[email protected]> Co-authored-by: Tom Edwards <[email protected]> Co-authored-by: Pragato Bhattacharjee <[email protected]> Co-authored-by: Abhay Mahajan <[email protected]>
- Loading branch information
1 parent
7cdf650
commit 9497bdf
Showing
48 changed files
with
5,409 additions
and
4,932 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
117 changes: 55 additions & 62 deletions
117
.github/workflows/auto-comment.yml → .github/workflows/welcome-message.yml
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 |
---|---|---|
@@ -1,62 +1,55 @@ | ||
name: Check Semantic and welcome new contributors | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- reopened | ||
workflow_call: | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
semantics: | ||
name: Semantics | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: amannn/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
pr-compliance-checks: | ||
name: PR Compliance Checks | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: mtfoley/[email protected] | ||
with: | ||
body-auto-close: false | ||
protected-branch-auto-close: false | ||
body-comment: > | ||
## Issue Reference | ||
In order to be considered for merging, the pull request description must refer to a | ||
specific issue number. This is described in our | ||
[contributing guide](https://unify.ai/docs/ivy/overview/contributing/the_basics.html#todo-list-issues) and our PR template. | ||
This check is looking for a phrase similar to: "Fixes #XYZ" or "Resolves #XYZ" where XYZ is the issue | ||
number that this PR is meant to address. | ||
welcome: | ||
name: Welcome | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
needs: semantics | ||
if: github.event.action == 'opened' | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-message: |- | ||
Congrats on making your first Pull Request and thanks for supporting Ivy! 🎉 | ||
Joing the conversation in our [Discord](https://discord.com/invite/sXyFF8tDtm) | ||
Here are some notes to understand our tests: | ||
- We have merged all the tests in one file called \`display_test_results\` job. 👀 It contains the following two sections: | ||
- **Combined Test Results:** This shows the results of all the ivy tests that ran on the PR. ✔️ | ||
- **New Failures Introduced:** This lists the tests that are passing on main, but fail on the PR Fork. | ||
Please try to make sure that there are no such tests. 💪 | ||
name: Check Semantic and welcome new contributors | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- reopened | ||
workflow_call: | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
pr-compliance-checks: | ||
name: PR Compliance Checks | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: mtfoley/[email protected] | ||
with: | ||
body-auto-close: false | ||
protected-branch-auto-close: false | ||
body-comment: > | ||
## Issue Reference | ||
In order to be considered for merging, the pull request description must refer to a | ||
specific issue number. This is described in our | ||
[contributing guide](https://unify.ai/docs/ivy/overview/contributing/the_basics.html#todo-list-issues) and our PR template. | ||
This check is looking for a phrase similar to: "Fixes #XYZ" or "Resolves #XYZ" where XYZ is the issue | ||
number that this PR is meant to address. | ||
welcome: | ||
name: Welcome | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
if: github.event.action == 'opened' | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-message: |- | ||
Congrats on making your first Pull Request and thanks for supporting Ivy! 🎉 | ||
Join the conversation in our [Discord](https://discord.com/invite/sXyFF8tDtm) | ||
Here are some notes to understand our tests: | ||
- We have merged all the tests in one file called \`display_test_results\` job. 👀 It contains the following two sections: | ||
- **Combined Test Results:** This shows the results of all the ivy tests that ran on the PR. ✔️ | ||
- **New Failures Introduced:** This lists the tests that fails on this PR. | ||
Please make sure they are passing. 💪 | ||
Keep in mind that we will assign an engineer for this task and they will look at it based on the workload that they have, so be patient. |
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
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
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.