From a86673894925c5034bd215ef5c9e303cc7ff9c65 Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Mon, 25 Apr 2022 20:28:46 +0500 Subject: [PATCH 1/6] fix link --- RELEASE_PROCESS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 07547270c..ee8ab139a 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -194,7 +194,7 @@ The steps to follow for this are: - Create a fork of the [website](https://github.com/asyncapi/website) repository - Create a new file at `pages/blog/release-notes-X.X.X.md` (replacing `X.X.X` with the version number for the release) - Add a standard header at the top of the file (see the release notes for [2.2.0](https://raw.githubusercontent.com/asyncapi/website/master/pages/blog/release-notes-2.2.0.md) and [2.3.0](https://raw.githubusercontent.com/asyncapi/website/master/pages/blog/release-notes-2.3.0.md) for examples) -- Add a (webp format) cover image to the `public/img/posts/release-notes-X.X.X/` folder, and update the `cover` attribute of the blog post header with it. (**Make sure to attribute the image correctly** - unsplash.com is a good source of free images for this). See [this commit from the 2.3.0 release](4050ca0540684f5188300e0c27efc713a6ba1ec2) for an example of doing this. +- Add a (webp format) cover image to the `public/img/posts/release-notes-X.X.X/` folder, and update the `cover` attribute of the blog post header with it. (**Make sure to attribute the image correctly** - unsplash.com is a good source of free images for this). See [this commit from the 2.3.0 release](https://github.com/asyncapi/website/pull/512/commits/4050ca0540684f5188300e0c27efc713a6ba1ec2) for an example of doing this. - Add a (webp format) profile picture of the release coordinator to the `public/img/avatars` folder, and update the `authors` attribute of the blog post header with it. See [this commit from the 2.3.0 release](https://github.com/asyncapi/website/pull/512/commits/006f7df26b0d0803ed2e1dd6b8004dfdaec15617) for an example of doing this. - Open a **draft** pull request against the [website](https://github.com/asyncapi/website/) repository. Make sure the option **Allow edits and access to secrets by maintainers** is selected to enable support from maintainers. This image shows example pull request created in GitHub with release notes for AsyncAPI specification From 6f8853485c444a422439fe2daef7b84e379ff278 Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Mon, 25 Apr 2022 20:47:32 +0500 Subject: [PATCH 2/6] add paterns --- mlc_config.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 mlc_config.json diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 000000000..85fc1a73d --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,16 @@ +{ + "ignorePatterns": [ + { + "pattern": "https://github.com/asyncapi/spec/tree/BRANCH_NAME" + }, + { + "pattern": "https://github.com/asyncapi/spec-json-schemas/tree/BRANCH_NAME" + }, + { + "pattern": "https://github.com/asyncapi/parser-js/tree/BRANCH_NAME" + }, + { + "pattern": "https://github.com/asyncapi/website/pull/PULLREQUEST" + } + ] +} From 6a355c0074d1687895f1745721c587f3ac7fda2c Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Mon, 25 Apr 2022 20:55:23 +0500 Subject: [PATCH 3/6] Update mlc_config.json --- mlc_config.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mlc_config.json b/mlc_config.json index 85fc1a73d..1368e2f0d 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -1,16 +1,16 @@ { "ignorePatterns": [ { - "pattern": "https://github.com/asyncapi/spec/tree/BRANCH_NAME" + "pattern": "^https://github.com/asyncapi/spec/tree/BRANCH_NAME" }, { - "pattern": "https://github.com/asyncapi/spec-json-schemas/tree/BRANCH_NAME" + "pattern": "^https://github.com/asyncapi/spec-json-schemas/tree/BRANCH_NAME" }, { - "pattern": "https://github.com/asyncapi/parser-js/tree/BRANCH_NAME" + "pattern": "^https://github.com/asyncapi/parser-js/tree/BRANCH_NAME" }, { - "pattern": "https://github.com/asyncapi/website/pull/PULLREQUEST" + "pattern": "^https://github.com/asyncapi/website/pull/PULLREQUEST" } ] } From 062189265152dd2a3b2f1c8a1f796efb27e5a0c5 Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Wed, 27 Apr 2022 14:00:03 +0500 Subject: [PATCH 4/6] Update mlc_config.json --- mlc_config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mlc_config.json b/mlc_config.json index 1368e2f0d..01833db7f 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -11,6 +11,9 @@ }, { "pattern": "^https://github.com/asyncapi/website/pull/PULLREQUEST" + }, + { + "pattern": "^https://github.com/asyncapi/spec/blob/.*.md$" } ] } From 6d0f1ee5043c82df8c038cb2a42556d411eac9a8 Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Wed, 27 Apr 2022 14:08:00 +0500 Subject: [PATCH 5/6] Update mlc_config.json --- mlc_config.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/mlc_config.json b/mlc_config.json index 01833db7f..1368e2f0d 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -11,9 +11,6 @@ }, { "pattern": "^https://github.com/asyncapi/website/pull/PULLREQUEST" - }, - { - "pattern": "^https://github.com/asyncapi/spec/blob/.*.md$" } ] } From f47850e576d921383e9638496c6f698169a14ea3 Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Wed, 4 May 2022 16:46:54 +0500 Subject: [PATCH 6/6] ignore another pattern --- mlc_config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mlc_config.json b/mlc_config.json index 1368e2f0d..01833db7f 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -11,6 +11,9 @@ }, { "pattern": "^https://github.com/asyncapi/website/pull/PULLREQUEST" + }, + { + "pattern": "^https://github.com/asyncapi/spec/blob/.*.md$" } ] }