forked from commaai/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 142
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
169 changed files
with
6,936 additions
and
5,453 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 |
---|---|---|
@@ -1,53 +1,45 @@ | ||
name: "PR review" | ||
name: "PR Review" | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, reopened, synchronize, edited, edited] | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
labeler: | ||
name: review | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
pr_check: | ||
name: Check PR Target Branch | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: false | ||
|
||
# Label PRs | ||
- uses: actions/[email protected] | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
dot: true | ||
configuration-path: .github/labeler.yaml | ||
fetch-depth: 0 | ||
|
||
# Check PR target branch | ||
- name: check branch | ||
uses: Vankka/pr-target-branch-action@def32ec9d93514138d6ac0132ee62e120a72aed5 | ||
if: github.repository == 'commaai/openpilot' | ||
- name: Check Target Branch | ||
shell: bash | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
target: /^(?!master$).*/ | ||
exclude: /commaai:.*/ | ||
change-to: ${{ github.base_ref }} | ||
already-exists-action: close_this | ||
already-exists-comment: "Your PR should be made against the `master` branch" | ||
|
||
# Welcome comment | ||
- name: comment | ||
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 | ||
if: github.event.pull_request.head.repo.full_name != 'commaai/openpilot' | ||
with: | ||
message: | | ||
<!-- _(run_id **${{ github.run_id }}**)_ --> | ||
Thanks for contributing to openpilot! In order for us to review your PR as quickly as possible, check the following: | ||
* Convert your PR to a draft unless it's ready to review | ||
* Read the [contributing docs](https://github.com/commaai/openpilot/blob/master/docs/CONTRIBUTING.md) | ||
* Before marking as "ready for review", ensure: | ||
* the goal is clearly stated in the description | ||
* all the tests are passing | ||
* the change is [something we merge](https://github.com/commaai/openpilot/blob/master/docs/CONTRIBUTING.md#what-gets-merged) | ||
* include a route or your device' dongle ID if relevant | ||
comment_tag: run_id | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
run: | | ||
TOKEN_USERNAME=$(gh api user -H "Authorization: token $GITHUB_TOKEN" --jq '.login') | ||
if [[ "${{ github.actor }}" == "FrogAi" ]]; then | ||
echo "PR opened or reopened by FrogAi. No action needed." | ||
exit 0 | ||
fi | ||
if [[ "${{ github.base_ref }}" != "MAKE-PRS-HERE" ]]; then | ||
git config --global user.name "${{ github.actor }}" | ||
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | ||
gh api repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments \ | ||
-H "Authorization: token $GITHUB_TOKEN" \ | ||
-f body="Please submit your pull request to the \"MAKE-PRS-HERE\" branch." | ||
gh api repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }} \ | ||
-X PATCH -H "Authorization: token $GITHUB_TOKEN" -f state='closed' | ||
exit 1 | ||
else | ||
gh api repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments \ | ||
-H "Authorization: token $GITHUB_TOKEN" \ | ||
-f body="Thank you for your PR! If you're not already in the FrogPilot Discord, [feel free to join](https://discord.FrogPilot.download) and let me know you've opened a PR!" | ||
fi |
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.