Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit a013514

Browse files
authored
chore: prepare for archival (#405)
* chore: prepare for archival Signed-off-by: Ashish Padhy <[email protected]> * fix: bundle has changed Signed-off-by: Ashish Padhy <[email protected]> * chore: remove action bump check due to sunset Signed-off-by: Ashish Padhy <[email protected]> --------- Signed-off-by: Ashish Padhy <[email protected]>
1 parent 7a1fb57 commit a013514

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export GITHUB_WORKSPACE = $(shell pwd)
1414
run:
1515
@bash ./entrypoint.sh $(DEFAULT_VERSION) $(DEFAULT_COMMAND) $(TEST_FILEPATH) $(DEFAULT_TEMPLATE) $(DEFAULT_LANGUAGE) $(DEFAULT_OUTPUT) $(DEFAULT_PARAMETERS) $(DEFAULT_CUSTOM_COMMANDS)
1616

17-
test: test-default test-validate-success test-custom-output test-custom-commands test-optimize test-bundle test-convert test-action-bump
17+
test: test-default test-validate-success test-custom-output test-custom-commands test-optimize test-bundle test-convert
1818

1919
# Test cases
2020

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
[![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-)
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->
55

6+
## Deprecation Notice
7+
> [!IMPORTANT]
8+
> This repository has been **deprecated**. The GitHub Action has been migrated to a new repository for better support and enhancements.
9+
> ### Migration Details
10+
> - The new repository: [asyncapi/cli](https://github.com/asyncapi/cli)
11+
> - Marketplace URL: [AsyncAPI CLI Action](https://github.com/marketplace/actions/asyncapi-cli-action)
12+
> ### What to Update:
13+
> - If you are using `asyncapi/github-action-for-cli` in your workflows, update it to `asyncapi/cli`.
14+
> - Docker-based actions require no changes, but versions are now synced with CLI releases. Refer to [Docker Hub](https://hub.docker.com/r/asyncapi/github-action-for-cli) for details.
15+
> ### Example Migration
16+
> #### Old Workflow:
17+
> ```yaml
18+
> - name: AsyncAPI CLI Action
19+
> uses: asyncapi/[email protected]
20+
> ```
21+
> #### New Workflow:
22+
> ```yaml
23+
> - name: AsyncAPI CLI Action
24+
> uses: asyncapi/[email protected]
25+
>```
26+
> For further details, stay tuned for official documentation and blog posts explaining the changes and outlining best practices.
27+
28+
---
29+
630
This action exposes the [AsyncAPI CLI](https://github.com/asyncapi/cli). It allows you to generate documentation, validate AsyncAPI documents, convert between different AsyncAPI versions and much more.
731
832
## Inputs

test/bundle/asyncapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ channels:
77
user/signedup:
88
subscribe:
99
message:
10-
$ref: "./test/bundle/messages.yaml#/messages/UserSignedUp"
10+
$ref: "messages.yaml#/messages/UserSignedUp"

test/bundle/features.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ channels:
77
user/loggedOut:
88
subscribe:
99
message:
10-
$ref: "./test/bundle/messages.yaml#/messages/UserLoggedOut"
10+
$ref: "messages.yaml#/messages/UserLoggedOut"

0 commit comments

Comments
 (0)