You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
2.7KB

  1. name: Greetings
  2. on: [pull_request_target, issues]
  3. jobs:
  4. greeting:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/first-interaction@v1
  8. with:
  9. repo-token: ${{ secrets.GITHUB_TOKEN }}
  10. pr-message: |
  11. Hello @${{ github.actor }}, thank you for submitting a PR! To allow your work to be integrated as seamlessly as possible, we advise you to:
  12. - 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:
  13. ```bash
  14. git remote add upstream https://github.com/ultralytics/yolov5.git
  15. git fetch upstream
  16. git checkout feature # <----- replace 'feature' with local branch name
  17. git rebase upstream/master
  18. git push -u origin -f
  19. ```
  20. - Verify all Continuous Integration (CI) **checks are passing**.
  21. - 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
  22. issue-message: |
  23. Hello @${{ github.actor }}, thank you for your interest in our work! Please visit our [Custom Training Tutorial](https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data) to get started, and see our [Jupyter Notebook](https://github.com/ultralytics/yolov5/blob/master/tutorial.ipynb) <a href="https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a>, [Docker Image](https://hub.docker.com/r/ultralytics/yolov5), and [Google Cloud Quickstart Guide](https://github.com/ultralytics/yolov5/wiki/GCP-Quickstart) for example environments.
  24. If this is a bug report, please provide screenshots and **minimum viable code to reproduce your issue**, otherwise we can not help you.
  25. If this is a custom model or data training question, please note Ultralytics does **not** provide free personal support. As a leader in vision ML and AI, we do offer professional consulting, from simple expert advice up to delivery of fully customized, end-to-end production solutions for our clients, such as:
  26. - **Cloud-based AI** systems operating on **hundreds of HD video streams in realtime.**
  27. - **Edge AI** integrated into custom iOS and Android apps for realtime **30 FPS video inference.**
  28. - **Custom data training**, hyperparameter evolution, and model exportation to any destination.
  29. For more information please visit https://www.ultralytics.com.