issue_response.yml 656 B

12345678910111213141516171819
  1. on:
  2. fork:
  3. issues:
  4. types: [opened]
  5. jobs:
  6. welcome:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - name: Leave Comment
  10. run: gh issue comment "$NUMBER" --body "$BODY"
  11. env:
  12. GH_TOKEN: ${{ secrets.GH_TOKEN }}
  13. GH_REPO: ${{ github.repository }}
  14. NUMBER: ${{ github.event.issue.number }}
  15. BODY: >
  16. Sorry!! We are reducing the support for fast_gicp.
  17. Please consider using [small_gicp](https://github.com/koide3/small_gicp), a new faster library with better portability.
  18. Meanwhile, feel free to open a PR if you have any improvements that can be merged into fast_gicp.