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
Version the actions: semver tags + v1 alias, deprecate ftf action, bump managed actions
- Add release.yml: pushing a vX.Y.Z tag moves the major alias tag (v1) and
creates the GitHub release; consumers pin module-ci-action@v1 instead of
@master.
- Document the versioning convention in the root and module-ci-action READMEs;
example workflows now reference @v1.
- Mark the ftf-based module-preview-action as deprecated (root README +
its own README); module-ci-action is the current action.
- Bump managed actions: actions/checkout v4 -> v7 (action steps, test
workflows, README examples), actions/setup-python v5 -> v6.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: module-ci-action/README.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,9 @@ triggering event:
14
14
|`pull_request`**closed without merge**|**cleanup**| Deletes the preview each changed module owns — **only if** the preview belongs to a commit from this PR. |
15
15
|`pull_request`**closed by merge**|**no-op**| Skipped: the concurrent `push` (publish) run re-uploads and publishes the module at the merge commit, so it owns the slot. Running cleanup here would be redundant and could race the publish. |
16
16
17
-
> This action is a sibling of [`module-preview-action`](../module-preview-action)
18
-
> (the `ftf`-based action). They are independent — pick the one that matches your CLI.
17
+
> This action supersedes the **deprecated**`ftf`-based
18
+
> [`module-preview-action`](../module-preview-action), which is kept only for
0 commit comments