Update greetings.yml
This commit is contained in:
parent
c65e4d4446
commit
0613806286
13
.github/workflows/greetings.yml
vendored
13
.github/workflows/greetings.yml
vendored
@ -9,7 +9,18 @@ jobs:
|
|||||||
- uses: actions/first-interaction@v1
|
- uses: actions/first-interaction@v1
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
pr-message: 'Hello @${{ github.actor }}, thank you for submitting a PR! We will respond as soon as possible.'
|
pr-message: |
|
||||||
|
Hello @${{ github.actor }}, thank you for submitting a PR! To allow your work to be integrated as seamlessly as possible, we advise you to:
|
||||||
|
- Verify your PR is **up-to-date with origin/master.** If your PR is behind origin/master update by running the following, replacing 'feature' with the name of your local branch:
|
||||||
|
```bash
|
||||||
|
git remote add upstream https://github.com/ultralytics/yolov3.git
|
||||||
|
git fetch upstream
|
||||||
|
git checkout feature # <----- replace 'feature' with local branch name
|
||||||
|
git rebase upstream/master
|
||||||
|
git push -u origin -f
|
||||||
|
```
|
||||||
|
- Verify all Continuous Integration (CI) **checks are passing**.
|
||||||
|
- Reduce changes to the absolute **minimum** required for your bug fix or feature addition. _"It is not daily increase but daily decrease, hack away the unessential. The closer to the source, the less wastage there is."_ -Bruce Lee
|
||||||
issue-message: |
|
issue-message: |
|
||||||
Hello @${{ github.actor }}, thank you for your interest in our work! Ultralytics has open-sourced YOLOv5 at https://github.com/ultralytics/yolov5, featuring faster, lighter and more accurate object detection. YOLOv5 is recommended for all new projects.
|
Hello @${{ github.actor }}, thank you for your interest in our work! Ultralytics has open-sourced YOLOv5 at https://github.com/ultralytics/yolov5, featuring faster, lighter and more accurate object detection. YOLOv5 is recommended for all new projects.
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user