+ [2019-12-01T15:01:45Z] Yoginth haha ????
+ [2019-12-01T22:57:57Z] AlexP11223 I got a PR with a horrible commit message, What's the best way to change it when merging?
+ [2019-12-01T23:08:39Z] holgersson AlexP11223: 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.

message no. 176208

Posted by holgersson in #github at 2019-12-01T23:08:39Z

AlexP11223: 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] mertyildiran Hi, 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] mertyildiran My 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] mertyildiran I 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] BtbN If 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] mertyildiran BtbN 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 ?