-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature - Add Version To Composite Action and Reusable Workflow #110
Conversation
76f5405
to
7959f01
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After review most of it,
I think we need to smartly change the dependency.py
to have something like:
from_uses_string()
, and to_uses_string()
and avoid any parsing of the string (even with split("@")
) outside that class.
Means - we get the uses string, parse it to understand the tag, and do all the download and analysis according to that.
When we want to save/identify that action, we can use that to_uses_string()
to have unique identification for it, for various reasons:
- save it in db
- help the graph relations
- etc
78ce624
to
291736b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a test about this in the integration test also?
291736b
to
98c69da
Compare
@oreenlivnicode Make sure to rebase and change |
Might have bugs.
If tag is found we will get download_url from tag object returned by API call. Else, we will get download_url from main contents page in the repo (also by API).
Support tags in reusable workflows (Workflow)
98c69da
to
107564c
Compare
No description provided.