in GitHub by
How can we access to reusable workflows in github?

1 Answer

0 votes
by

A reusable workflow can be used by another workflow if any of the following is true:

  • Both workflows are in the same repository.
  • The called workflow is stored in a public repository, and your organization allows you to use public reusable workflows.
  • The called workflow is stored in a private repository and the settings for that repository allow it to be accessed.
...