You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment for a checking the current repo it is expected the workflow clones the repo with uses: actions/checkout@v2 step before running the tortellini action.
However the action can already clone repos when given a csv file with repo urls. It would be nice if it could also clone the active repo. Using env var to determine github url.
Pro:
No need for uses: actions/checkout@v2 step,
Both modes look very similar
Con:
actions/checkout does a good, job no need to replicate
more maintenance
The text was updated successfully, but these errors were encountered:
At the moment for a checking the current repo it is expected the workflow clones the repo with
uses: actions/checkout@v2
step before running the tortellini action.However the action can already clone repos when given a csv file with repo urls. It would be nice if it could also clone the active repo. Using env var to determine github url.
Pro:
uses: actions/checkout@v2
step,Con:
actions/checkout
does a good, job no need to replicateThe text was updated successfully, but these errors were encountered: