Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion piped
Submodule piped updated 93 files
+0 −19 .github/actions/setup-py/action.yml
+0 −17 .github/dependabot.yml
+270 −0 .github/workflows/build-container.yml
+22 −0 .github/workflows/clippy.yml
+0 −98 .github/workflows/docker-publish.yml
+16 −16 .github/workflows/freeze-for-pr.yml
+26 −0 .github/workflows/lint-actions.yml
+22 −18 .github/workflows/lint.yml
+48 −0 .github/workflows/pr-docs.yml
+23 −0 .github/workflows/publish.yml
+92 −0 .github/workflows/py-test.yml
+20 −16 .github/workflows/reformat.yml
+36 −0 .github/workflows/release-docs.yml
+0 −34 .github/workflows/resync-piped.yml
+24 −0 .github/workflows/rustfmt.yml
+13 −11 .github/workflows/type-check.yml
+20 −12 .github/workflows/update-licence.yml
+0 −31 .github/workflows/upgrade-locks.yml
+25 −0 .github/workflows/verify-types.yml
+6 −4 .gitignore
+3 −5 Containerfile
+4 −0 README.md
+1 −0 bot/__init__.py
+179 −0 bot/config.py
+4 −3 bot/main.py
+38 −0 config/renovate.json5
+1 −1 docker-compose.yml
+0 −1 github/CODEOWNERS
+0 −2 github/FUNDING.yml
+0 −19 github/actions/setup-py/action.yml
+0 −21 github/dependabot.yml
+0 −13 github/pull_request_template.md
+0 −29 github/workflows/clippy.yml
+0 −98 github/workflows/docker-publish.yml
+0 −34 github/workflows/freeze-for-pr.yml
+0 −38 github/workflows/lint.yml
+0 −46 github/workflows/pr-docs.yml
+0 −32 github/workflows/publish.yml
+0 −73 github/workflows/py-test.yml
+0 −33 github/workflows/reformat.yml
+0 −36 github/workflows/release-docs.yml
+0 −34 github/workflows/resync-piped.yml
+0 −38 github/workflows/rustfmt.yml
+0 −34 github/workflows/type-check.yml
+0 −31 github/workflows/update-licence.yml
+0 −31 github/workflows/upgrade-locks.yml
+0 −34 github/workflows/verify-types.yml
+1 −0 justfile
+41 −0 justfiles/bash_scripts/build_python.bash
+4 −8 justfiles/bash_scripts/cargo_comand.bash
+42 −0 justfiles/bash_scripts/check_diff_file.bash
+53 −0 justfiles/bash_scripts/combine_coverage.bash
+3 −8 justfiles/bash_scripts/ensure_artifacts_dir.bash
+10 −6 justfiles/bash_scripts/execute_bash_script.bash
+42 −0 justfiles/bash_scripts/execute_py_script.bash
+53 −0 justfiles/bash_scripts/format_markup.bash
+59 −0 justfiles/bash_scripts/format_misc.bash
+55 −0 justfiles/bash_scripts/format_python.bash
+33 −0 justfiles/bash_scripts/freeze_python_locks.bash
+37 −0 justfiles/bash_scripts/generate_docs.bash
+75 −0 justfiles/bash_scripts/lint_markup.bash
+32 −0 justfiles/bash_scripts/lint_renovate.bash
+43 −0 justfiles/bash_scripts/publish_python.bash
+32 −0 justfiles/bash_scripts/run_ruff.bash
+54 −0 justfiles/bash_scripts/save_diff.bash
+62 −0 justfiles/bash_scripts/shared.bash
+32 −0 justfiles/bash_scripts/slot_check.bash
+32 −0 justfiles/bash_scripts/spell_check.bash
+58 −0 justfiles/bash_scripts/test_python.bash
+34 −0 justfiles/bash_scripts/type_check_python.bash
+33 −0 justfiles/bash_scripts/verify_types.bash
+104 −0 justfiles/global.just
+5 −0 justfiles/mkdocs.just
+1 −0 justfiles/py_scripts/__init__.py
+98 −0 justfiles/py_scripts/cleanup.py
+40 −0 justfiles/py_scripts/constants.py
+140 −0 justfiles/py_scripts/just_call_by_groups.py
+97 −0 justfiles/py_scripts/update_license.py
+2 −0 justfiles/python-all.just
+29 −0 justfiles/python-base.just
+30 −0 justfiles/python-library.just
+7 −0 justfiles/python-locks.just
+15 −0 justfiles/python-test.just
+19 −0 justfiles/rust.just
+32 −0 mise.toml
+5 −63 pyproject.toml
+0 −168 python/copy_actions.py
+0 −438 python/noxfile.py
+0 −325 python/piped_shared/config.py
+0 −0 python/piped_shared/py.typed
+0 −8 python/pyproject.toml
+4 −0 renovate.json5
+320 −953 uv.lock
Loading