From 0b79c0c5785ec54c5947f2cbba9b602df6c199bb Mon Sep 17 00:00:00 2001 From: twentylemon Date: Tue, 12 Nov 2024 09:40:25 -0500 Subject: [PATCH 1/5] :art: run markdown formatter --- wiki/Commands.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wiki/Commands.md b/wiki/Commands.md index f2d516ee..5f632ccf 100644 --- a/wiki/Commands.md +++ b/wiki/Commands.md @@ -193,10 +193,10 @@ Make power shards or somersloops available to use in the factory. Note that powe Changes the recipe bank. For the love of god, use slash commands for this one. Recipe bank names are available in autocomplete. Some recipe banks include, -* Default: only default in game recipes, no raw supply or conversion recipes -* All: all available recipes, includes raw supply and conversions -* _RawSupply_ modifier: the set of raw supply recipes -* _Conversions_ modifier: the set of raw resource conversion recipes, does not include other recipes in the Converter +- Default: only default in game recipes, no raw supply or conversion recipes +- All: all available recipes, includes raw supply and conversions +- _RawSupply_ modifier: the set of raw supply recipes +- _Conversions_ modifier: the set of raw resource conversion recipes, does not include other recipes in the Converter ``` /satisfy recipe include name From 6e1ef5b01873ff13a0e8beab1a7f31eaf389f1d8 Mon Sep 17 00:00:00 2001 From: twentylemon Date: Tue, 12 Nov 2024 09:50:57 -0500 Subject: [PATCH 2/5] :bug: make release job fail if any jobs failed --- .github/workflows/python-package.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 00ba2be3..4f460d79 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -65,7 +65,10 @@ jobs: - sanity - synthesize runs-on: ubuntu-latest + if: ${{ always() }} steps: + - run: exit 1 + if: ${{ failure() }} - run: echo all checks passed deploy: From 51ea4c0cf3ebc51dbcfcd39b9560c0270ea2612d Mon Sep 17 00:00:00 2001 From: twentylemon Date: Tue, 12 Nov 2024 09:53:46 -0500 Subject: [PATCH 3/5] break format --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 23d8c635..eb6f9800 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,9 @@ https://user-images.githubusercontent.com/3149083/135654217-244d7457-9db9-4c30-a Before running DuckBot, you want to create a virtualenv to develop in. DuckBot runs on `python3.10`, so prefer to use that. + + + ```sh python3.10 -m venv --clear --prompt duckbot venv . venv/bin/activate From 4e093926c1d13f7081c116dc2fdb0351ca453260 Mon Sep 17 00:00:00 2001 From: twentylemon Date: Tue, 12 Nov 2024 09:59:20 -0500 Subject: [PATCH 4/5] change failure out --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4f460d79..f3a981ce 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -68,7 +68,7 @@ jobs: if: ${{ always() }} steps: - run: exit 1 - if: ${{ failure() }} + if: ${{ contains(needs.*.result, 'failure') }} - run: echo all checks passed deploy: From 910519ae0942270cb70ab9e0278009e4e1a82a6e Mon Sep 17 00:00:00 2001 From: twentylemon Date: Tue, 12 Nov 2024 10:03:18 -0500 Subject: [PATCH 5/5] Revert "break format" This reverts commit 51ea4c0cf3ebc51dbcfcd39b9560c0270ea2612d. --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index eb6f9800..23d8c635 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,6 @@ https://user-images.githubusercontent.com/3149083/135654217-244d7457-9db9-4c30-a Before running DuckBot, you want to create a virtualenv to develop in. DuckBot runs on `python3.10`, so prefer to use that. - - - ```sh python3.10 -m venv --clear --prompt duckbot venv . venv/bin/activate