From 4047c6749e27aae02bdbb55e0cd194926db3ac46 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:27:26 -0500 Subject: [PATCH 01/22] another one --- .github/workflows/docs.yml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2b5fe245..ab2add5d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -6,9 +6,27 @@ on: - docs/** jobs: - test: + spell-check: uses: FuelLabs/github-actions/.github/workflows/mdbook-docs.yml@master with: - docs-src-path: 'docs/book/src' - spellcheck-config-path: 'docs/book/.spellcheck.yml' - \ No newline at end of file + docs-src-path: "docs/book/src" + spellcheck-config-path: "docs/book/.spellcheck.yml" + + lint-docs: + name: Lint Docs + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: FuelLabs/github-actions/setups/node@master + - name: Lint Check + run: | + pnpm install + pnpm lint:check + + markdown-link-check: + name: Check Links + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.12 From ddd3f4cdf7d1a7696f6eb1983bbb049d75e3c7eb Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:32:23 -0500 Subject: [PATCH 02/22] test --- docs/book/src/upgradability/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/upgradability/index.md b/docs/book/src/upgradability/index.md index 11f20c00..b3da6869 100644 --- a/docs/book/src/upgradability/index.md +++ b/docs/book/src/upgradability/index.md @@ -1,6 +1,6 @@ # Upgradability Library -The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradeable-proxies/) as well as additional functionality for ownership of the proxy contract. +The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradable-proxies/) as well as additional functionality for ownership of the proxy contract. For implementation details on the Upgradability Library please see the [Sway Libs Docs](https://fuellabs.github.io/sway-libs/master/sway_libs/upgradability/index.html). From cb19633c8c52721ba13d482edd2b878cb4fb0bf3 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:35:27 -0500 Subject: [PATCH 03/22] fixed --- .github/workflows/docs.yml | 1 + docs/book/src/upgradability/index.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ab2add5d..3da379b3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -7,6 +7,7 @@ on: jobs: spell-check: + name: Spell Check uses: FuelLabs/github-actions/.github/workflows/mdbook-docs.yml@master with: docs-src-path: "docs/book/src" diff --git a/docs/book/src/upgradability/index.md b/docs/book/src/upgradability/index.md index b3da6869..11f20c00 100644 --- a/docs/book/src/upgradability/index.md +++ b/docs/book/src/upgradability/index.md @@ -1,6 +1,6 @@ # Upgradability Library -The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradable-proxies/) as well as additional functionality for ownership of the proxy contract. +The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradeable-proxies/) as well as additional functionality for ownership of the proxy contract. For implementation details on the Upgradability Library please see the [Sway Libs Docs](https://fuellabs.github.io/sway-libs/master/sway_libs/upgradability/index.html). From 8ae5a1e9a1da2d2f18e7db5a262041c69eeb751d Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:36:20 -0500 Subject: [PATCH 04/22] fixed --- docs/book/src/upgradability/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/upgradability/index.md b/docs/book/src/upgradability/index.md index 11f20c00..451f36e7 100644 --- a/docs/book/src/upgradability/index.md +++ b/docs/book/src/upgradability/index.md @@ -1,6 +1,6 @@ # Upgradability Library -The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradeable-proxies/) as well as additional functionality for ownership of the proxy contract. +The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://fuel.network/) as well as additional functionality for ownership of the proxy contract. For implementation details on the Upgradability Library please see the [Sway Libs Docs](https://fuellabs.github.io/sway-libs/master/sway_libs/upgradability/index.html). From eea877d16444ff585c9946d8078f7d342cb640ad Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:38:18 -0500 Subject: [PATCH 05/22] again --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3da379b3..84bc7c01 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,4 +30,4 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v3 - - uses: gaurav-nelson/github-action-markdown-link-check@1.0.12 + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 From 8f232e90e3eff6571c75fed72b7a15738390db40 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:44:19 -0500 Subject: [PATCH 06/22] change --- .github/workflows/docs.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 84bc7c01..f6a6dc3c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,10 +24,22 @@ jobs: pnpm install pnpm lint:check - markdown-link-check: + check-links: name: Check Links runs-on: ubuntu-latest steps: - - name: Checkout repo + - name: Checkout Repository uses: actions/checkout@v3 - - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Install Dependencies + run: | + npm install -g linkinator + + - name: Check Links + run: | + linkinator "docs/book/src" --silent From cd266e002e617b53ffeb77a516125d8d6ae0db74 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:50:53 -0500 Subject: [PATCH 07/22] fix --- .github/workflows/docs.yml | 29 +++++++++---------------- docs/book/src/.markdown-link-check.json | 10 +++++++++ 2 files changed, 20 insertions(+), 19 deletions(-) create mode 100644 docs/book/src/.markdown-link-check.json diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f6a6dc3c..d822801e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,32 +14,23 @@ jobs: spellcheck-config-path: "docs/book/.spellcheck.yml" lint-docs: - name: Lint Docs runs-on: ubuntu-latest + needs: link-check steps: - uses: actions/checkout@v3 - uses: FuelLabs/github-actions/setups/node@master + with: + node-version: '16' + pnpm: true + - name: Install Dependencies + run: pnpm install - name: Lint Check - run: | - pnpm install - pnpm lint:check + run: pnpm lint:check - check-links: + markdown-link-check: name: Check Links runs-on: ubuntu-latest steps: - - name: Checkout Repository + - name: Checkout repo uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Install Dependencies - run: | - npm install -g linkinator - - - name: Check Links - run: | - linkinator "docs/book/src" --silent + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 diff --git a/docs/book/src/.markdown-link-check.json b/docs/book/src/.markdown-link-check.json new file mode 100644 index 00000000..78745983 --- /dev/null +++ b/docs/book/src/.markdown-link-check.json @@ -0,0 +1,10 @@ +{ + "ignorePatterns": [ + { + "pattern": "https://crates.io/crates/fuel-merkle" + }, + { + "pattern": "https://github.com/FuelLabs/devrel-requests/issues/new/choose" + } + ] +} \ No newline at end of file From f1a2dc5ce25f4e84df554c198b7533075652979f Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:52:39 -0500 Subject: [PATCH 08/22] test --- docs/book/src/upgradability/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/upgradability/index.md b/docs/book/src/upgradability/index.md index 451f36e7..b3da6869 100644 --- a/docs/book/src/upgradability/index.md +++ b/docs/book/src/upgradability/index.md @@ -1,6 +1,6 @@ # Upgradability Library -The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://fuel.network/) as well as additional functionality for ownership of the proxy contract. +The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradable-proxies/) as well as additional functionality for ownership of the proxy contract. For implementation details on the Upgradability Library please see the [Sway Libs Docs](https://fuellabs.github.io/sway-libs/master/sway_libs/upgradability/index.html). From 9f3cd9f1d5feadd3943e450c9a95278260a5880c Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:54:29 -0500 Subject: [PATCH 09/22] remove restriction --- .github/workflows/docs.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d822801e..cd452335 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,8 +2,6 @@ name: Docs on: pull_request: - paths: - - docs/** jobs: spell-check: From 92f445db17c84413fd21aa1e52c96e4824cf096d Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:06:25 -0500 Subject: [PATCH 10/22] check --- .github/workflows/docs.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index cd452335..3bdb15ff 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,6 +11,16 @@ jobs: docs-src-path: "docs/book/src" spellcheck-config-path: "docs/book/.spellcheck.yml" + link-check: + name: Link Check + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 + with: + configuration-path: ".markdown-link-check.json" + lint-docs: runs-on: ubuntu-latest needs: link-check @@ -24,11 +34,3 @@ jobs: run: pnpm install - name: Lint Check run: pnpm lint:check - - markdown-link-check: - name: Check Links - runs-on: ubuntu-latest - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 From b629338a03bd9e06d307991a4b3dfbde28bbd582 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:09:35 -0500 Subject: [PATCH 11/22] done --- .github/workflows/docs.yml | 3 ++- docs/book/{src => }/.markdown-link-check.json | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename docs/book/{src => }/.markdown-link-check.json (100%) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3bdb15ff..cd38b105 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,9 +19,10 @@ jobs: uses: actions/checkout@v3 - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 with: - configuration-path: ".markdown-link-check.json" + configuration-path: "docs/book/.markdown-link-check.json" lint-docs: + name: Lint Docs runs-on: ubuntu-latest needs: link-check steps: diff --git a/docs/book/src/.markdown-link-check.json b/docs/book/.markdown-link-check.json similarity index 100% rename from docs/book/src/.markdown-link-check.json rename to docs/book/.markdown-link-check.json From 62a4114275c60ee1fd0009b3ab9964f16cda2e99 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:16:37 -0500 Subject: [PATCH 12/22] Sanity check --- .github/workflows/docs.yml | 2 +- .../book/.markdown-link-check.json => .markdown-link-check.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/book/.markdown-link-check.json => .markdown-link-check.json (100%) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index cd38b105..13874b29 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v3 - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 with: - configuration-path: "docs/book/.markdown-link-check.json" + configuration-path: ".markdown-link-check.json" lint-docs: name: Lint Docs diff --git a/docs/book/.markdown-link-check.json b/.markdown-link-check.json similarity index 100% rename from docs/book/.markdown-link-check.json rename to .markdown-link-check.json From 5fca3e514024ebb6ce3449e6e146de4aa5ac256b Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:19:10 -0500 Subject: [PATCH 13/22] try again --- .github/workflows/docs.yml | 2 +- .../book/.markdown-link-check.json | 0 mlc_config.json | 10 ++++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) rename .markdown-link-check.json => docs/book/.markdown-link-check.json (100%) create mode 100644 mlc_config.json diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 13874b29..cd38b105 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v3 - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 with: - configuration-path: ".markdown-link-check.json" + configuration-path: "docs/book/.markdown-link-check.json" lint-docs: name: Lint Docs diff --git a/.markdown-link-check.json b/docs/book/.markdown-link-check.json similarity index 100% rename from .markdown-link-check.json rename to docs/book/.markdown-link-check.json diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 00000000..78745983 --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,10 @@ +{ + "ignorePatterns": [ + { + "pattern": "https://crates.io/crates/fuel-merkle" + }, + { + "pattern": "https://github.com/FuelLabs/devrel-requests/issues/new/choose" + } + ] +} \ No newline at end of file From 70ef5497fe6498823e440e00d82bd4c430f21496 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:22:01 -0500 Subject: [PATCH 14/22] done --- docs/book/.markdown-link-check.json | 10 ---------- mlc_config.json | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 docs/book/.markdown-link-check.json diff --git a/docs/book/.markdown-link-check.json b/docs/book/.markdown-link-check.json deleted file mode 100644 index 78745983..00000000 --- a/docs/book/.markdown-link-check.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "ignorePatterns": [ - { - "pattern": "https://crates.io/crates/fuel-merkle" - }, - { - "pattern": "https://github.com/FuelLabs/devrel-requests/issues/new/choose" - } - ] -} \ No newline at end of file diff --git a/mlc_config.json b/mlc_config.json index 78745983..2e64d725 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -1,7 +1,7 @@ { "ignorePatterns": [ { - "pattern": "https://crates.io/crates/fuel-merkle" + "pattern": "^https://crates\\.io.*" }, { "pattern": "https://github.com/FuelLabs/devrel-requests/issues/new/choose" From 535e56db1a33aab064643cfb941072a127487b8c Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:22:31 -0500 Subject: [PATCH 15/22] e --- docs/book/src/upgradability/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/upgradability/index.md b/docs/book/src/upgradability/index.md index b3da6869..11f20c00 100644 --- a/docs/book/src/upgradability/index.md +++ b/docs/book/src/upgradability/index.md @@ -1,6 +1,6 @@ # Upgradability Library -The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradable-proxies/) as well as additional functionality for ownership of the proxy contract. +The Upgradability Library provides functions that can be used to implement contract upgrades via simple upgradable proxies. The Upgradability Library implements the required and optional functionality from [SRC-14](https://docs.fuel.network/docs/sway-standards/src-14-simple-upgradeable-proxies/) as well as additional functionality for ownership of the proxy contract. For implementation details on the Upgradability Library please see the [Sway Libs Docs](https://fuellabs.github.io/sway-libs/master/sway_libs/upgradability/index.html). From 29b57ba0e3b523ca8a5ebd361b91b776e39d5f10 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:24:35 -0500 Subject: [PATCH 16/22] node version --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index cd38b105..e684768c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v3 - uses: FuelLabs/github-actions/setups/node@master with: - node-version: '16' + node-version: '22' pnpm: true - name: Install Dependencies run: pnpm install From 159dfcbce238aaa52dc3e652f5ddd2d25c75267d Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:29:14 -0500 Subject: [PATCH 17/22] using python instead --- .github/workflows/docs.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e684768c..c77300aa 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -27,11 +27,12 @@ jobs: needs: link-check steps: - uses: actions/checkout@v3 - - uses: FuelLabs/github-actions/setups/node@master + - name: Set up Python + uses: actions/setup-python@v3 with: - node-version: '22' - pnpm: true - - name: Install Dependencies - run: pnpm install - - name: Lint Check - run: pnpm lint:check + python-version: '3.x' + - name: Install Markdown Linter + run: pip install pymarkdownlint + - name: Lint Markdown Files + run: pymarkdownlint docs/book + From 01aa2c475fd8390672b5749ec1d805062b175033 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:37:20 -0500 Subject: [PATCH 18/22] done --- .github/workflows/docs.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c77300aa..42681a5d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -20,19 +20,3 @@ jobs: - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 with: configuration-path: "docs/book/.markdown-link-check.json" - - lint-docs: - name: Lint Docs - runs-on: ubuntu-latest - needs: link-check - steps: - - uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.x' - - name: Install Markdown Linter - run: pip install pymarkdownlint - - name: Lint Markdown Files - run: pymarkdownlint docs/book - From feded2ab9afb630f50206d474a97e58b372c2e8c Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:38:17 -0500 Subject: [PATCH 19/22] adding back in path rule --- .github/workflows/docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 42681a5d..dace431a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,6 +2,8 @@ name: Docs on: pull_request: + paths: + - docs/** jobs: spell-check: From 30fb93aa7d07651b2a7edd2980cf31d9e5606361 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:39:22 -0500 Subject: [PATCH 20/22] adding back in path rule --- mlc_config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlc_config.json b/mlc_config.json index 2e64d725..26061fe8 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -7,4 +7,4 @@ "pattern": "https://github.com/FuelLabs/devrel-requests/issues/new/choose" } ] -} \ No newline at end of file +} From 68dbfbeb530b95d0f8f678b537cf93f76cd4b6df Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Tue, 10 Dec 2024 09:53:00 -0500 Subject: [PATCH 21/22] pathing --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index dace431a..701a639f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,7 +2,7 @@ name: Docs on: pull_request: - paths: + paths: - docs/** jobs: From 97b6b0c5d7e1ced94b2778fe57fa95d18ed52283 Mon Sep 17 00:00:00 2001 From: Call Delegation <106365423+calldelegation@users.noreply.github.com> Date: Tue, 10 Dec 2024 09:54:28 -0500 Subject: [PATCH 22/22] pathing --- .github/workflows/docs.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 701a639f..42681a5d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,8 +2,6 @@ name: Docs on: pull_request: - paths: - - docs/** jobs: spell-check: