From 9878ca5dcc1c76f5f6155ee2dff13d0edaacfe4e Mon Sep 17 00:00:00 2001 From: ANUSHKA SAXENA Date: Wed, 9 Oct 2024 16:15:17 +0530 Subject: [PATCH 1/5] fix: add destination for .prettierignore replication (#317) --- .github/workflows/global-replicator.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/global-replicator.yml b/.github/workflows/global-replicator.yml index b4ee56f2..bbb51f6d 100644 --- a/.github/workflows/global-replicator.yml +++ b/.github/workflows/global-replicator.yml @@ -216,6 +216,7 @@ jobs: committer_email: info@asyncapi.io commit_message: "ci: update .prettierignore from global .github repo" bot_branch_name: bot/update-files-from-global-repo + destination: ./ # This setup is separate from the generic workflow setup because this workflow is mandatory. # Maintainers cannot opt out for any reason except technical ones. From d72a5e70610078bde4180983dc84013977b3689a Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 21 Oct 2024 20:48:52 +0300 Subject: [PATCH 2/5] docs: fix link to specification reference docs (#315) Co-authored-by: Lukasz Gornicki --- profile/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile/README.md b/profile/README.md index 56a91d39..701e1fa4 100644 --- a/profile/README.md +++ b/profile/README.md @@ -35,7 +35,7 @@ Are you wondering where to look first? Then search no more! Here are some great - [Intro to AsyncAPI](https://www.asyncapi.com/docs/getting-started) 🔮 - [Tutorials](https://www.asyncapi.com/docs/tutorials) 📚 -- [Spec Details](https://www.asyncapi.com/docs/specifications/latest) 🔍 +- [Spec Details](https://www.asyncapi.com/docs/reference/specification/latest) 🔍 - [Tools](https://www.asyncapi.com/docs/community/tooling) 🛠️ ## 👩🏽‍💻 Contribute to AsyncAPI From c6d223f951d0cb54ca9db7d9940862abbbaa4428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20M=C3=A9ndez?= Date: Wed, 30 Oct 2024 17:08:06 +0100 Subject: [PATCH 3/5] ci: install slackify globally to avoid conflicts with pnpm (#318) --- .github/actions/slackify-markdown/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/slackify-markdown/action.yml b/.github/actions/slackify-markdown/action.yml index a1a2b257..7279ee56 100644 --- a/.github/actions/slackify-markdown/action.yml +++ b/.github/actions/slackify-markdown/action.yml @@ -21,7 +21,7 @@ runs: node-version: 16 - name: Install slackify-markdown package shell: bash - run: npm install slackify-markdown@4.3.1 + run: npm install -g slackify-markdown@4.3.1 - name: Slackify uses: actions/github-script@v6 id: slackify From 9dd38e48f4dcd488a5b7bf3fd070006d5a949c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20M=C3=A9ndez?= Date: Mon, 4 Nov 2024 11:46:46 +0100 Subject: [PATCH 4/5] fix: global installs do not work as I expected (#319) --- .github/actions/slackify-markdown/action.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/actions/slackify-markdown/action.yml b/.github/actions/slackify-markdown/action.yml index 7279ee56..9449cc7a 100644 --- a/.github/actions/slackify-markdown/action.yml +++ b/.github/actions/slackify-markdown/action.yml @@ -19,12 +19,21 @@ runs: uses: actions/setup-node@v3 with: node-version: 16 + - name: Create and initialize slackify directory + shell: bash + run: | # We need to create a directory to install the slackify-markdown package to avoid conflicting with repositories using pnpm. + mkdir slackify + cd slackify + npm init -y - name: Install slackify-markdown package shell: bash - run: npm install -g slackify-markdown@4.3.1 + working-directory: slackify + run: | + npm install slackify-markdown@4.3.1 - name: Slackify uses: actions/github-script@v6 id: slackify + working-directory: slackify env: MARKDOWN: ${{ inputs.markdown }} with: @@ -37,4 +46,8 @@ runs: core.setOutput('text', mrkdwn); } catch (error) { core.setFailed(error.message); - } \ No newline at end of file + } + - name: Clean up slackify directory + shell: bash + run: | + rm -rf slackify From 4314ad34f442116dcef5eeaf3b138c73fd1f10db Mon Sep 17 00:00:00 2001 From: Lukasz Gornicki Date: Mon, 4 Nov 2024 20:33:49 +0100 Subject: [PATCH 5/5] ci: "fix: global installs do not work as I expected" (#320) --- .github/actions/slackify-markdown/action.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/actions/slackify-markdown/action.yml b/.github/actions/slackify-markdown/action.yml index 9449cc7a..9dead14c 100644 --- a/.github/actions/slackify-markdown/action.yml +++ b/.github/actions/slackify-markdown/action.yml @@ -19,21 +19,12 @@ runs: uses: actions/setup-node@v3 with: node-version: 16 - - name: Create and initialize slackify directory - shell: bash - run: | # We need to create a directory to install the slackify-markdown package to avoid conflicting with repositories using pnpm. - mkdir slackify - cd slackify - npm init -y - name: Install slackify-markdown package shell: bash - working-directory: slackify - run: | - npm install slackify-markdown@4.3.1 + run: npm install slackify-markdown@4.3.1 - name: Slackify uses: actions/github-script@v6 id: slackify - working-directory: slackify env: MARKDOWN: ${{ inputs.markdown }} with: @@ -47,7 +38,3 @@ runs: } catch (error) { core.setFailed(error.message); } - - name: Clean up slackify directory - shell: bash - run: | - rm -rf slackify