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
feat: use github.action_path instead of donwloading the script from main branch
https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
> github.action_path string
> The path where your action is located.
> You can use this path to easily access files located in the same repository as your action.
> This attribute is only supported in composite actions.
* You don't have to download the script, because you can access to the script with `github.action_path`
* Downloading the script from main branch isn't good. main branch is unreleased and Even if you pin the Action's version, Action may be broken suddenly
0 commit comments