How can I get status of the last Github action run in order to use it in other workflow? I saw the option with REST but maybe there is another way how to do workflow that manually run only if status of another action successfully.
Asked
Active
Viewed 1,472 times
2 Answers
1
maybe there is another way how to do workflow that manually run only if status of another action successfully.
That is the wokrflow_run
trigger I was mentioning here:
name: CI notify
# Only trigger, when the build workflow succeeded
on:
workflow_run:
workflows: ["CI build"]
types:
- completed

VonC
- 1,262,500
- 529
- 4,410
- 5,250
-3
- git log
git log [options] [revision-range] [[--] path​]
Git log is a utility tool to review and read a history of everything that happens to a repository.

Harsh Mantri
- 75
- 7