Login
Remember
Register
Ask a Question
How can we access to reusable workflows in github?
0
votes
asked
Aug 1, 2023
in
GitHub
by
DavidAnderson
How can we access to reusable workflows in github?
github-actions-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 1, 2023
by
DavidAnderson
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.
...