Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 2.52 KB

README.md

File metadata and controls

27 lines (24 loc) · 2.52 KB

Smartly GitHub actions

Release flow

  1. Whenever you need to crate/change an action, open a PR.
  2. Assign a label to the PR matching the type of change (patch, minor, major).
  3. When the PR is merged:
    1. A new tag will be created on the default branch, e.g. my-action-v1.2.3.
    2. A branch matching the major version will be pushed, containing only the code of the altered action, e.g. my-action-v1.
    3. You can then invoke the action with uses: smartlyio/github-actions@my-action-v1.
    4. To use a specific version of the action, you need to use: uses: smartlyio/github-actions/my-action@my-action-v1.2.3.