0

Is it possible to integrate your own bash script into GitHub?

I'd like to set up GitHub so that any pull request would have to run via ssh a script. This script will do all kinds of testing and my own CI/CD process.

  1. How do you get GitHub to call your own, custom script?
  2. How do you get GitHub to interpret the result as success or failure.
  3. As a bonus it would be nice for GitHub to show the text output of the script to the user running the pull request.
JoshK
  • 337
  • 4
  • 16

1 Answers1

0

You could look into Github Actions or Git Hooks (only local).

kaffarell
  • 639
  • 5
  • 16