1

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.

zakura
  • 11
  • 2

2 Answers2

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.