+[2019-11-30T22:15:26Z]R2robotlol +[2019-12-01T15:01:45Z]Yoginthhaha ???? +[2019-12-01T18:58:50Z]apsknightHello +[2019-12-01T22:57:57Z]AlexP11223I got a PR with a horrible commit message, What's the best way to change it when merging? +[2019-12-01T23:08:39Z]holgerssonAlexP11223: In case you can ask the commit'er to rephrase via "git commit --amend" and re-push, so he or she will learn it for the next time.
+[2019-12-02T18:40:20Z]mertyildiranHi, I have this workflow to build the Docker image https://github.com/DragonComputer/Dragonfire/blob/master/.github/workflows/docker.yml and this workflow to run the tests https://github.com/DragonComputer/Dragonfire/blob/master/.github/workflows/pythonapp.yml +[2019-12-02T18:42:18Z]mertyildiranMy question is; I want to use the Docker image that built by the Docker workflow in my test workflow. But I want the test workflow wait to finish the Docker build, if there is a Docker build. How can I achieve that with GitHub actions? +[2019-12-02T18:43:34Z]mertyildiranI know there is https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds but seems like it's for the jobs in the same workflow while the thing I need is a check across different workflows. +[2019-12-02T19:00:18Z]BtbNIf the tests depend on the results of building the image, that sounds like it should be one single workflow to me. +[2019-12-02T19:01:28Z]mertyildiranBtbN OK how am I going to define this criteria https://github.com/DragonComputer/Dragonfire/blob/master/.github/workflows/docker.yml#L3-L8 for the Docker build inside this workflow https://github.com/DragonComputer/Dragonfire/blob/master/.github/workflows/pythonapp.yml ?