go-task-bin 3.30.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of go-task-bin might be problematic. Click here for more details.
- go_task_bin-3.30.1/LICENSE +22 -0
- go_task_bin-3.30.1/PKG-INFO +49 -0
- go_task_bin-3.30.1/README.md +36 -0
- go_task_bin-3.30.1/go_task_bin/__init__.py +0 -0
- go_task_bin-3.30.1/pdm_build.py +48 -0
- go_task_bin-3.30.1/pyproject.toml +84 -0
- go_task_bin-3.30.1/task/.editorconfig +13 -0
- go_task_bin-3.30.1/task/.git +1 -0
- go_task_bin-3.30.1/task/.gitattributes +1 -0
- go_task_bin-3.30.1/task/.github/CODE_OF_CONDUCT.md +46 -0
- go_task_bin-3.30.1/task/.github/CONTRIBUTING.md +14 -0
- go_task_bin-3.30.1/task/.github/FUNDING.yml +3 -0
- go_task_bin-3.30.1/task/.github/ISSUE_TEMPLATE/bug_report.md +20 -0
- go_task_bin-3.30.1/task/.github/ISSUE_TEMPLATE/config.yml +11 -0
- go_task_bin-3.30.1/task/.github/ISSUE_TEMPLATE/feature_request.md +15 -0
- go_task_bin-3.30.1/task/.github/dependabot.yml +24 -0
- go_task_bin-3.30.1/task/.github/pull_request_template.md +5 -0
- go_task_bin-3.30.1/task/.github/workflows/issue-awaiting-response.yml +43 -0
- go_task_bin-3.30.1/task/.github/workflows/issue-closed.yml +29 -0
- go_task_bin-3.30.1/task/.github/workflows/issue-experiment.yml +123 -0
- go_task_bin-3.30.1/task/.github/workflows/issue-needs-triage.yml +29 -0
- go_task_bin-3.30.1/task/.github/workflows/lint.yml +24 -0
- go_task_bin-3.30.1/task/.github/workflows/release.yml +26 -0
- go_task_bin-3.30.1/task/.github/workflows/sync-translated-documents.yml +36 -0
- go_task_bin-3.30.1/task/.github/workflows/test.yml +38 -0
- go_task_bin-3.30.1/task/.github/workflows/upload-source-documents.yml +38 -0
- go_task_bin-3.30.1/task/.gitignore +35 -0
- go_task_bin-3.30.1/task/.golangci.yml +18 -0
- go_task_bin-3.30.1/task/.goreleaser.yml +125 -0
- go_task_bin-3.30.1/task/.mockery.yaml +4 -0
- go_task_bin-3.30.1/task/.nvmrc +1 -0
- go_task_bin-3.30.1/task/.prettierignore +1 -0
- go_task_bin-3.30.1/task/.prettierrc.yml +7 -0
- go_task_bin-3.30.1/task/.vscode/settings-sample.json +5 -0
- go_task_bin-3.30.1/task/CHANGELOG.md +745 -0
- go_task_bin-3.30.1/task/LICENSE +21 -0
- go_task_bin-3.30.1/task/README.md +29 -0
- go_task_bin-3.30.1/task/Taskfile.yml +137 -0
- go_task_bin-3.30.1/task/args/args.go +56 -0
- go_task_bin-3.30.1/task/args/args_test.go +219 -0
- go_task_bin-3.30.1/task/bin/.keep +0 -0
- go_task_bin-3.30.1/task/cmd/release/main.go +134 -0
- go_task_bin-3.30.1/task/cmd/sleepit/sleepit.go +171 -0
- go_task_bin-3.30.1/task/cmd/task/task.go +340 -0
- go_task_bin-3.30.1/task/completion/bash/task.bash +55 -0
- go_task_bin-3.30.1/task/completion/fish/task.fish +37 -0
- go_task_bin-3.30.1/task/completion/ps/task.ps1 +28 -0
- go_task_bin-3.30.1/task/completion/zsh/_task +62 -0
- go_task_bin-3.30.1/task/concurrency.go +25 -0
- go_task_bin-3.30.1/task/docs/.gitignore +20 -0
- go_task_bin-3.30.1/task/docs/.nojekyll +0 -0
- go_task_bin-3.30.1/task/docs/.prettierignore +1 -0
- go_task_bin-3.30.1/task/docs/Taskfile.yml +64 -0
- go_task_bin-3.30.1/task/docs/babel.config.js +3 -0
- go_task_bin-3.30.1/task/docs/blog/2023-09-02-introducing-experiments.md +142 -0
- go_task_bin-3.30.1/task/docs/blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/constants.js +11 -0
- go_task_bin-3.30.1/task/docs/crowdin.yml +15 -0
- go_task_bin-3.30.1/task/docs/docs/api_reference.md +355 -0
- go_task_bin-3.30.1/task/docs/docs/changelog.md +750 -0
- go_task_bin-3.30.1/task/docs/docs/community.md +45 -0
- go_task_bin-3.30.1/task/docs/docs/contributing.md +167 -0
- go_task_bin-3.30.1/task/docs/docs/deprecations/deprecations.md +19 -0
- go_task_bin-3.30.1/task/docs/docs/deprecations/template.md +18 -0
- go_task_bin-3.30.1/task/docs/docs/deprecations/version_2_schema.md +27 -0
- go_task_bin-3.30.1/task/docs/docs/donate.md +51 -0
- go_task_bin-3.30.1/task/docs/docs/experiments/experiments.md +127 -0
- go_task_bin-3.30.1/task/docs/docs/experiments/gentle_force.md +30 -0
- go_task_bin-3.30.1/task/docs/docs/experiments/remote_taskfiles.md +81 -0
- go_task_bin-3.30.1/task/docs/docs/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/docs/faq.md +101 -0
- go_task_bin-3.30.1/task/docs/docs/installation.md +302 -0
- go_task_bin-3.30.1/task/docs/docs/integrations.md +86 -0
- go_task_bin-3.30.1/task/docs/docs/intro.md +71 -0
- go_task_bin-3.30.1/task/docs/docs/releasing.md +72 -0
- go_task_bin-3.30.1/task/docs/docs/styleguide.md +240 -0
- go_task_bin-3.30.1/task/docs/docs/taskfile_versions.md +264 -0
- go_task_bin-3.30.1/task/docs/docs/translate.md +22 -0
- go_task_bin-3.30.1/task/docs/docs/usage.md +1811 -0
- go_task_bin-3.30.1/task/docs/docusaurus.config.js +273 -0
- go_task_bin-3.30.1/task/docs/i18n/en/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/en/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/en/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/en/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/contributing.md +101 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md +266 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/intro.md +59 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/contributing.md +101 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md +266 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/intro.md +59 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/contributing.md +101 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md +266 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/intro.md +59 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/contributing.md +101 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md +266 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md +59 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/contributing.md +101 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md +266 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/intro.md +59 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/contributing.md +101 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md +266 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/intro.md +59 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/code.json +396 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/authors.yml +10 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +509 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community.md +33 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing.md +102 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/donate.md +44 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/faq.md +89 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md +264 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/integrations.md +62 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/intro.md +54 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md +46 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/translate.md +18 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage.md +1587 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current.json +6 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-theme-classic/footer.json +46 -0
- go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-theme-classic/navbar.json +38 -0
- go_task_bin-3.30.1/task/docs/package.json +43 -0
- go_task_bin-3.30.1/task/docs/prettier.config.js +13 -0
- go_task_bin-3.30.1/task/docs/sidebars.js +17 -0
- go_task_bin-3.30.1/task/docs/src/api/crowdin.js +50 -0
- go_task_bin-3.30.1/task/docs/src/components/.keep +0 -0
- go_task_bin-3.30.1/task/docs/src/css/carbon.css +65 -0
- go_task_bin-3.30.1/task/docs/src/css/custom.css +78 -0
- go_task_bin-3.30.1/task/docs/src/pages/.keep +0 -0
- go_task_bin-3.30.1/task/docs/src/themes/prismDark.js +79 -0
- go_task_bin-3.30.1/task/docs/src/themes/prismLight.js +100 -0
- go_task_bin-3.30.1/task/docs/static/.nojekyll +0 -0
- go_task_bin-3.30.1/task/docs/static/CNAME +1 -0
- go_task_bin-3.30.1/task/docs/static/img/appwrite.svg +7 -0
- go_task_bin-3.30.1/task/docs/static/img/favicon.ico +0 -0
- go_task_bin-3.30.1/task/docs/static/img/logo.png +0 -0
- go_task_bin-3.30.1/task/docs/static/img/logo.svg +1 -0
- go_task_bin-3.30.1/task/docs/static/img/logo_mono.svg +1 -0
- go_task_bin-3.30.1/task/docs/static/img/og-image.png +0 -0
- go_task_bin-3.30.1/task/docs/static/img/pix.png +0 -0
- go_task_bin-3.30.1/task/docs/static/install.sh +387 -0
- go_task_bin-3.30.1/task/docs/static/js/carbon.js +29 -0
- go_task_bin-3.30.1/task/docs/static/schema.json +621 -0
- go_task_bin-3.30.1/task/docs/yarn.lock +8892 -0
- go_task_bin-3.30.1/task/errors/errors.go +56 -0
- go_task_bin-3.30.1/task/errors/errors_task.go +147 -0
- go_task_bin-3.30.1/task/errors/errors_taskfile.go +122 -0
- go_task_bin-3.30.1/task/go.mod +33 -0
- go_task_bin-3.30.1/task/go.sum +64 -0
- go_task_bin-3.30.1/task/hash.go +28 -0
- go_task_bin-3.30.1/task/help.go +196 -0
- go_task_bin-3.30.1/task/init.go +41 -0
- go_task_bin-3.30.1/task/install-task.sh +387 -0
- go_task_bin-3.30.1/task/internal/compiler/compiler.go +15 -0
- go_task_bin-3.30.1/task/internal/compiler/env.go +20 -0
- go_task_bin-3.30.1/task/internal/compiler/v2/compiler_v2.go +131 -0
- go_task_bin-3.30.1/task/internal/compiler/v3/compiler_v3.go +197 -0
- go_task_bin-3.30.1/task/internal/deepcopy/deepcopy.go +35 -0
- go_task_bin-3.30.1/task/internal/editors/output.go +23 -0
- go_task_bin-3.30.1/task/internal/env/env.go +31 -0
- go_task_bin-3.30.1/task/internal/execext/devnull.go +13 -0
- go_task_bin-3.30.1/task/internal/execext/exec.go +146 -0
- go_task_bin-3.30.1/task/internal/experiments/experiments.go +55 -0
- go_task_bin-3.30.1/task/internal/filepathext/filepathext.go +57 -0
- go_task_bin-3.30.1/task/internal/fingerprint/checker.go +20 -0
- go_task_bin-3.30.1/task/internal/fingerprint/glob.go +51 -0
- go_task_bin-3.30.1/task/internal/fingerprint/sources.go +16 -0
- go_task_bin-3.30.1/task/internal/fingerprint/sources_checksum.go +123 -0
- go_task_bin-3.30.1/task/internal/fingerprint/sources_checksum_test.go +21 -0
- go_task_bin-3.30.1/task/internal/fingerprint/sources_none.go +23 -0
- go_task_bin-3.30.1/task/internal/fingerprint/sources_timestamp.go +151 -0
- go_task_bin-3.30.1/task/internal/fingerprint/status.go +36 -0
- go_task_bin-3.30.1/task/internal/fingerprint/task.go +132 -0
- go_task_bin-3.30.1/task/internal/fingerprint/task_test.go +173 -0
- go_task_bin-3.30.1/task/internal/goext/meta.go +62 -0
- go_task_bin-3.30.1/task/internal/hash/hash.go +24 -0
- go_task_bin-3.30.1/task/internal/logger/logger.go +123 -0
- go_task_bin-3.30.1/task/internal/mocks/sources_checkable.go +225 -0
- go_task_bin-3.30.1/task/internal/mocks/status_checkable.go +92 -0
- go_task_bin-3.30.1/task/internal/orderedmap/orderedmap.go +164 -0
- go_task_bin-3.30.1/task/internal/orderedmap/orderedmap_test.go +121 -0
- go_task_bin-3.30.1/task/internal/output/group.go +51 -0
- go_task_bin-3.30.1/task/internal/output/interleaved.go +11 -0
- go_task_bin-3.30.1/task/internal/output/output.go +52 -0
- go_task_bin-3.30.1/task/internal/output/output_test.go +134 -0
- go_task_bin-3.30.1/task/internal/output/prefixed.go +66 -0
- go_task_bin-3.30.1/task/internal/slicesext/slicesext.go +20 -0
- go_task_bin-3.30.1/task/internal/sort/sorter.go +44 -0
- go_task_bin-3.30.1/task/internal/sort/sorter_test.go +77 -0
- go_task_bin-3.30.1/task/internal/summary/summary.go +118 -0
- go_task_bin-3.30.1/task/internal/summary/summary_test.go +171 -0
- go_task_bin-3.30.1/task/internal/sysinfo/uid.go +22 -0
- go_task_bin-3.30.1/task/internal/sysinfo/uid_win.go +9 -0
- go_task_bin-3.30.1/task/internal/templater/funcs.go +65 -0
- go_task_bin-3.30.1/task/internal/templater/templater.go +111 -0
- go_task_bin-3.30.1/task/internal/term/term.go +11 -0
- go_task_bin-3.30.1/task/internal/version/version.go +25 -0
- go_task_bin-3.30.1/task/package-lock.json +32 -0
- go_task_bin-3.30.1/task/package.json +34 -0
- go_task_bin-3.30.1/task/precondition.go +30 -0
- go_task_bin-3.30.1/task/requires.go +35 -0
- go_task_bin-3.30.1/task/setup.go +352 -0
- go_task_bin-3.30.1/task/signals.go +31 -0
- go_task_bin-3.30.1/task/signals_test.go +241 -0
- go_task_bin-3.30.1/task/status.go +54 -0
- go_task_bin-3.30.1/task/task.go +506 -0
- go_task_bin-3.30.1/task/task_test.go +2291 -0
- go_task_bin-3.30.1/task/taskfile/call.go +9 -0
- go_task_bin-3.30.1/task/taskfile/cmd.go +117 -0
- go_task_bin-3.30.1/task/taskfile/dep.go +53 -0
- go_task_bin-3.30.1/task/taskfile/for.go +68 -0
- go_task_bin-3.30.1/task/taskfile/included_taskfile.go +172 -0
- go_task_bin-3.30.1/task/taskfile/location.go +18 -0
- go_task_bin-3.30.1/task/taskfile/merge.go +80 -0
- go_task_bin-3.30.1/task/taskfile/output.go +65 -0
- go_task_bin-3.30.1/task/taskfile/platforms.go +100 -0
- go_task_bin-3.30.1/task/taskfile/platforms_test.go +50 -0
- go_task_bin-3.30.1/task/taskfile/precondition.go +59 -0
- go_task_bin-3.30.1/task/taskfile/precondition_test.go +51 -0
- go_task_bin-3.30.1/task/taskfile/read/cache.go +58 -0
- go_task_bin-3.30.1/task/taskfile/read/dotenv.go +51 -0
- go_task_bin-3.30.1/task/taskfile/read/node.go +44 -0
- go_task_bin-3.30.1/task/taskfile/read/node_base.go +47 -0
- go_task_bin-3.30.1/task/taskfile/read/node_file.go +54 -0
- go_task_bin-3.30.1/task/taskfile/read/node_http.go +67 -0
- go_task_bin-3.30.1/task/taskfile/read/taskfile.go +382 -0
- go_task_bin-3.30.1/task/taskfile/read/taskvars.go +45 -0
- go_task_bin-3.30.1/task/taskfile/requires.go +18 -0
- go_task_bin-3.30.1/task/taskfile/task.go +187 -0
- go_task_bin-3.30.1/task/taskfile/taskfile.go +89 -0
- go_task_bin-3.30.1/task/taskfile/taskfile_test.go +98 -0
- go_task_bin-3.30.1/task/taskfile/tasks.go +54 -0
- go_task_bin-3.30.1/task/taskfile/var.go +103 -0
- go_task_bin-3.30.1/task/testdata/alias/Taskfile.yml +19 -0
- go_task_bin-3.30.1/task/testdata/alias/Taskfile2.yml +7 -0
- go_task_bin-3.30.1/task/testdata/alias/alias-summary.txt +11 -0
- go_task_bin-3.30.1/task/testdata/alias/alias.txt +6 -0
- go_task_bin-3.30.1/task/testdata/checksum/.gitignore +2 -0
- go_task_bin-3.30.1/task/testdata/checksum/Taskfile.yml +20 -0
- go_task_bin-3.30.1/task/testdata/checksum/source.txt +1 -0
- go_task_bin-3.30.1/task/testdata/concurrency/Taskfile.yml +32 -0
- go_task_bin-3.30.1/task/testdata/cyclic/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/deferred/Taskfile.yml +12 -0
- go_task_bin-3.30.1/task/testdata/deps/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/deps/Taskfile.yml +56 -0
- go_task_bin-3.30.1/task/testdata/dir/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/dir/dynamic_var/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/dir/dynamic_var/Taskfile.yml +33 -0
- go_task_bin-3.30.1/task/testdata/dir/dynamic_var/subdirectory/Taskfile.yml +19 -0
- go_task_bin-3.30.1/task/testdata/dir/dynamic_var_on_created_dir/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/dir/explicit_doesnt_exist/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/dir/explicit_exists/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/dir/explicit_exists/exists/.keep +0 -0
- go_task_bin-3.30.1/task/testdata/dotenv/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv/default/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/dotenv/env_var_in_path/.env.testing +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv/env_var_in_path/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/dotenv/error_included_envs/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/dotenv/include1/.env +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv/include1/Taskfile.yml +3 -0
- go_task_bin-3.30.1/task/testdata/dotenv/include1/envs/.env +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv/local_env_in_path/.env.testing +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv/local_env_in_path/Taskfile.yml +11 -0
- go_task_bin-3.30.1/task/testdata/dotenv/local_var_in_path/.env.testing +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv/local_var_in_path/Taskfile.yml +13 -0
- go_task_bin-3.30.1/task/testdata/dotenv/missing_env/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/dotenv_task/default/.env +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv_task/default/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/dotenv_task/default/Taskfile.yml +28 -0
- go_task_bin-3.30.1/task/testdata/dry/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/dry_checksum/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/dry_checksum/source.txt +1 -0
- go_task_bin-3.30.1/task/testdata/empty_task/Taskfile.yml +4 -0
- go_task_bin-3.30.1/task/testdata/env/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/env/Taskfile.yml +33 -0
- go_task_bin-3.30.1/task/testdata/error_code/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +17 -0
- go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/shared/b +1 -0
- go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/shared/inner_shared/c +1 -0
- go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/src/a +1 -0
- go_task_bin-3.30.1/task/testdata/exit_immediately/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/expand/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/file_names/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/file_names/Taskfile.dist.yaml/Taskfile.dist.yaml +4 -0
- go_task_bin-3.30.1/task/testdata/file_names/Taskfile.dist.yml/Taskfile.dist.yml +4 -0
- go_task_bin-3.30.1/task/testdata/file_names/Taskfile.yaml/Taskfile.yaml +4 -0
- go_task_bin-3.30.1/task/testdata/file_names/Taskfile.yml/Taskfile.yml +4 -0
- go_task_bin-3.30.1/task/testdata/for/Taskfile.yml +93 -0
- go_task_bin-3.30.1/task/testdata/for/bar.txt +1 -0
- go_task_bin-3.30.1/task/testdata/for/foo.txt +1 -0
- go_task_bin-3.30.1/task/testdata/force/Taskfile.yml +19 -0
- go_task_bin-3.30.1/task/testdata/generates/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/generates/Taskfile.yml +52 -0
- go_task_bin-3.30.1/task/testdata/generates/sub/.keep +0 -0
- go_task_bin-3.30.1/task/testdata/ignore_errors/Taskfile.yml +20 -0
- go_task_bin-3.30.1/task/testdata/ignore_nil_elements/cmds/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/ignore_nil_elements/deps/Taskfile.yml +11 -0
- go_task_bin-3.30.1/task/testdata/ignore_nil_elements/includes/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/ignore_nil_elements/includes/inc.yml +7 -0
- go_task_bin-3.30.1/task/testdata/ignore_nil_elements/preconditions/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/ignore_signals/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/include_with_vars/Taskfile.yml +20 -0
- go_task_bin-3.30.1/task/testdata/include_with_vars/include/Taskfile.include.yml +11 -0
- go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/Taskfile.yml +17 -0
- go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/bar/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/foo/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/lib/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/includes/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/includes/Taskfile.yml +32 -0
- go_task_bin-3.30.1/task/testdata/includes/Taskfile2.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes/Taskfile_darwin.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes/Taskfile_linux.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes/Taskfile_windows.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes/included/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes/module1/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/includes/module2/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/includes_call_root_task/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/includes_call_root_task/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/includes_call_root_task/Taskfile2.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_cycle/Taskfile.yml +12 -0
- go_task_bin-3.30.1/task/testdata/includes_cycle/one/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/includes_cycle/one/two/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/includes_deps/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/includes_deps/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/includes_deps/Taskfile2.yml +16 -0
- go_task_bin-3.30.1/task/testdata/includes_empty/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/includes_empty/Taskfile.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes_empty/Taskfile2.yml +10 -0
- go_task_bin-3.30.1/task/testdata/includes_incorrect/Taskfile.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes_incorrect/incomplete.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes_internal/Taskfile.yml +15 -0
- go_task_bin-3.30.1/task/testdata/includes_internal/Taskfile2.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_interpolation/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/includes_interpolation/included/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/Taskfile.yml +11 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/called_one.txt +1 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/called_three.txt +1 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/called_two.txt +1 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/one/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/one/two/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/includes_multi_level/one/two/three/Taskfile.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes_optional/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/includes_optional/Taskfile.yml +11 -0
- go_task_bin-3.30.1/task/testdata/includes_optional_explicit_false/Taskfile.yml +11 -0
- go_task_bin-3.30.1/task/testdata/includes_optional_implicit_false/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/includes_rel_path/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/includes_rel_path/common/Taskfile.yml +4 -0
- go_task_bin-3.30.1/task/testdata/includes_rel_path/included/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_shadowed_default/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/includes_shadowed_default/Taskfile2.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_shadowed_default/file.txt +1 -0
- go_task_bin-3.30.1/task/testdata/includes_unshadowed_default/Taskfile.yml +5 -0
- go_task_bin-3.30.1/task/testdata/includes_unshadowed_default/Taskfile2.yml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_unshadowed_default/file.txt +1 -0
- go_task_bin-3.30.1/task/testdata/includes_yaml/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/includes_yaml/Custom.ext +16 -0
- go_task_bin-3.30.1/task/testdata/includes_yaml/included/Taskfile.yaml +6 -0
- go_task_bin-3.30.1/task/testdata/includes_yaml/included/custom.yaml +6 -0
- go_task_bin-3.30.1/task/testdata/incorrect_includes/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/incorrect_includes/included/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/init/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/internal_task/Taskfile.yml +15 -0
- go_task_bin-3.30.1/task/testdata/label_list/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/label_status/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/label_summary/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/label_uptodate/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/label_var/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/list_mixed_desc/Taskfile.yml +12 -0
- go_task_bin-3.30.1/task/testdata/output_group/Taskfile.yml +16 -0
- go_task_bin-3.30.1/task/testdata/output_group_error_only/Taskfile.yml +17 -0
- go_task_bin-3.30.1/task/testdata/params/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/params/Taskfile.yml +44 -0
- go_task_bin-3.30.1/task/testdata/platforms/Taskfile.yml +55 -0
- go_task_bin-3.30.1/task/testdata/precondition/Taskfile.yml +19 -0
- go_task_bin-3.30.1/task/testdata/precondition/foo.txt +0 -0
- go_task_bin-3.30.1/task/testdata/prompt/Taskfile.yml +16 -0
- go_task_bin-3.30.1/task/testdata/run/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/run/Taskfile.yml +24 -0
- go_task_bin-3.30.1/task/testdata/shopts/command_level/Taskfile.yml +14 -0
- go_task_bin-3.30.1/task/testdata/shopts/global_level/Taskfile.yml +14 -0
- go_task_bin-3.30.1/task/testdata/shopts/task_level/Taskfile.yml +14 -0
- go_task_bin-3.30.1/task/testdata/short_task_notation/Taskfile.yml +12 -0
- go_task_bin-3.30.1/task/testdata/silent/Taskfile.yml +71 -0
- go_task_bin-3.30.1/task/testdata/single_cmd_dep/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/single_cmd_dep/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/special_vars/Taskfile.yml +19 -0
- go_task_bin-3.30.1/task/testdata/special_vars/included/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/split_args/Taskfile.yml +6 -0
- go_task_bin-3.30.1/task/testdata/status/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/status/Taskfile.yml +25 -0
- go_task_bin-3.30.1/task/testdata/status_vars/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/status_vars/Taskfile.yml +10 -0
- go_task_bin-3.30.1/task/testdata/status_vars/source.txt +1 -0
- go_task_bin-3.30.1/task/testdata/summary/Taskfile.yml +26 -0
- go_task_bin-3.30.1/task/testdata/summary/task-with-summary.txt +22 -0
- go_task_bin-3.30.1/task/testdata/taskfile_walk/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/taskfile_walk/foo/bar/.gitkeep +0 -0
- go_task_bin-3.30.1/task/testdata/user_working_dir/Taskfile.yml +7 -0
- go_task_bin-3.30.1/task/testdata/user_working_dir_with_includes/Taskfile.yml +5 -0
- go_task_bin-3.30.1/task/testdata/user_working_dir_with_includes/included/Taskfile.yml +8 -0
- go_task_bin-3.30.1/task/testdata/user_working_dir_with_includes/somedir/.keep +0 -0
- go_task_bin-3.30.1/task/testdata/vars/v2/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/vars/v2/Taskfile.yml +58 -0
- go_task_bin-3.30.1/task/testdata/vars/v2/Taskvars.yml +14 -0
- go_task_bin-3.30.1/task/testdata/vars/v2/multiline/Taskfile.yml +45 -0
- go_task_bin-3.30.1/task/testdata/vars/v3/.env +1 -0
- go_task_bin-3.30.1/task/testdata/vars/v3/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/vars/v3/Taskfile.yml +51 -0
- go_task_bin-3.30.1/task/testdata/version/v1/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/version/v2/Taskfile.yml +9 -0
- go_task_bin-3.30.1/task/testdata/watcher_interval/.gitignore +1 -0
- go_task_bin-3.30.1/task/testdata/watcher_interval/Taskfile.yaml +16 -0
- go_task_bin-3.30.1/task/variables.go +244 -0
- go_task_bin-3.30.1/task/watch.go +181 -0
- go_task_bin-3.30.1/task/watch_test.go +81 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
The MIT License (MIT)
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2023 Bingsu
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: go-task-bin
|
|
3
|
+
Version: 3.30.1
|
|
4
|
+
Summary: task - A task runner / simpler Make alternative written in Go
|
|
5
|
+
Keywords: build build-tool devops go make makefile runner task task-runner taskfile tool
|
|
6
|
+
Author-Email: dowon <ks2515@naver.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Programming Language :: Other
|
|
9
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
10
|
+
Project-URL: Repository, https://github.com/Bing-su/pip-binary-factory
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# go-task-bin
|
|
15
|
+
|
|
16
|
+
https://github.com/go-task/task
|
|
17
|
+
|
|
18
|
+
https://taskfile.dev/
|
|
19
|
+
|
|
20
|
+
**Task** is a task runner / build tool that aims to be simpler and easier to use than, for example, [GNU Make](https://www.gnu.org/software/make/).
|
|
21
|
+
|
|
22
|
+
Since it's written in Go, Task is just a single binary and has no other dependencies, which means you don't need to mess with any complicated install setups just to use a build tool.
|
|
23
|
+
|
|
24
|
+
Once [installed](https://taskfile.dev/installation/), you just need to describe your build tasks using a simple [YAML](http://yaml.org/) schema in a file called Taskfile.yml:
|
|
25
|
+
|
|
26
|
+
```yaml
|
|
27
|
+
Taskfile.yaml
|
|
28
|
+
---
|
|
29
|
+
version: '3'
|
|
30
|
+
|
|
31
|
+
tasks:
|
|
32
|
+
hello:
|
|
33
|
+
cmds:
|
|
34
|
+
- echo 'Hello World from Task!'
|
|
35
|
+
silent: true
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
And call it by running task hello from your terminal.
|
|
39
|
+
|
|
40
|
+
The above example is just the start, you can take a look at the [usage](https://taskfile.dev/usage) guide to check the full schema documentation and Task features.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
This is a python wrapper that can be installed with pip.
|
|
44
|
+
|
|
45
|
+
## install
|
|
46
|
+
|
|
47
|
+
```sh
|
|
48
|
+
pip install go-task-bin
|
|
49
|
+
```
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# go-task-bin
|
|
2
|
+
|
|
3
|
+
https://github.com/go-task/task
|
|
4
|
+
|
|
5
|
+
https://taskfile.dev/
|
|
6
|
+
|
|
7
|
+
**Task** is a task runner / build tool that aims to be simpler and easier to use than, for example, [GNU Make](https://www.gnu.org/software/make/).
|
|
8
|
+
|
|
9
|
+
Since it's written in Go, Task is just a single binary and has no other dependencies, which means you don't need to mess with any complicated install setups just to use a build tool.
|
|
10
|
+
|
|
11
|
+
Once [installed](https://taskfile.dev/installation/), you just need to describe your build tasks using a simple [YAML](http://yaml.org/) schema in a file called Taskfile.yml:
|
|
12
|
+
|
|
13
|
+
```yaml
|
|
14
|
+
Taskfile.yaml
|
|
15
|
+
---
|
|
16
|
+
version: '3'
|
|
17
|
+
|
|
18
|
+
tasks:
|
|
19
|
+
hello:
|
|
20
|
+
cmds:
|
|
21
|
+
- echo 'Hello World from Task!'
|
|
22
|
+
silent: true
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
And call it by running task hello from your terminal.
|
|
26
|
+
|
|
27
|
+
The above example is just the start, you can take a look at the [usage](https://taskfile.dev/usage) guide to check the full schema documentation and Task features.
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
This is a python wrapper that can be installed with pip.
|
|
31
|
+
|
|
32
|
+
## install
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
pip install go-task-bin
|
|
36
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import shutil
|
|
3
|
+
import subprocess
|
|
4
|
+
import sys
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
|
|
7
|
+
NAME = "task"
|
|
8
|
+
VERSION = "3.30.1"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def is_windows():
|
|
12
|
+
if "GOOS" in os.environ:
|
|
13
|
+
return os.environ["GOOS"] == "windows"
|
|
14
|
+
return sys.platform == "win32"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def build(output: str) -> None:
|
|
18
|
+
go = shutil.which("go")
|
|
19
|
+
if go is None:
|
|
20
|
+
msg = "golang is required and 'go' should be in $PATH"
|
|
21
|
+
raise RuntimeError(msg)
|
|
22
|
+
|
|
23
|
+
args = [
|
|
24
|
+
go,
|
|
25
|
+
"build",
|
|
26
|
+
"-o",
|
|
27
|
+
output,
|
|
28
|
+
"-trimpath",
|
|
29
|
+
"-ldflags",
|
|
30
|
+
f"-s -w -X main.Version={VERSION}",
|
|
31
|
+
"./cmd/task",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
submodule = Path(__file__).parent.joinpath(NAME)
|
|
35
|
+
subprocess.run(args, check=True, cwd=submodule)
|
|
36
|
+
Path(output).chmod(0o777)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def pdm_build_hook_enabled(context):
|
|
40
|
+
return context.target != "sdist"
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def pdm_build_initialize(context) -> None:
|
|
44
|
+
context.ensure_build_dir()
|
|
45
|
+
output_path = Path(context.build_dir, "bin", NAME)
|
|
46
|
+
if is_windows():
|
|
47
|
+
output_path = output_path.with_suffix(".exe")
|
|
48
|
+
build(str(output_path))
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "go-task-bin"
|
|
3
|
+
description = "task - A task runner / simpler Make alternative written in Go"
|
|
4
|
+
version = "3.30.1"
|
|
5
|
+
authors = [
|
|
6
|
+
{ name = "dowon", email = "ks2515@naver.com" },
|
|
7
|
+
]
|
|
8
|
+
dependencies = []
|
|
9
|
+
requires-python = ">=3.8"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
keywords = [
|
|
12
|
+
"build",
|
|
13
|
+
"build-tool",
|
|
14
|
+
"devops",
|
|
15
|
+
"go",
|
|
16
|
+
"make",
|
|
17
|
+
"makefile",
|
|
18
|
+
"runner",
|
|
19
|
+
"task",
|
|
20
|
+
"task-runner",
|
|
21
|
+
"taskfile",
|
|
22
|
+
"tool",
|
|
23
|
+
]
|
|
24
|
+
classifiers = [
|
|
25
|
+
"Programming Language :: Other",
|
|
26
|
+
"Topic :: Software Development :: Build Tools",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.license]
|
|
30
|
+
text = "MIT"
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
repository = "https://github.com/Bing-su/pip-binary-factory"
|
|
34
|
+
|
|
35
|
+
[build-system]
|
|
36
|
+
requires = [
|
|
37
|
+
"pdm-backend",
|
|
38
|
+
]
|
|
39
|
+
build-backend = "pdm.backend"
|
|
40
|
+
|
|
41
|
+
[tool.pdm.build]
|
|
42
|
+
is-purelib = false
|
|
43
|
+
source-includes = [
|
|
44
|
+
"task/",
|
|
45
|
+
]
|
|
46
|
+
excludes = [
|
|
47
|
+
"bin/*",
|
|
48
|
+
".gitignore",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[tool.pdm.build.wheel-data]
|
|
52
|
+
scripts = [
|
|
53
|
+
"${BUILD_DIR}/bin/*",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[tool.ruff]
|
|
57
|
+
select = [
|
|
58
|
+
"A",
|
|
59
|
+
"B",
|
|
60
|
+
"C4",
|
|
61
|
+
"C90",
|
|
62
|
+
"E",
|
|
63
|
+
"EM",
|
|
64
|
+
"F",
|
|
65
|
+
"FA",
|
|
66
|
+
"I001",
|
|
67
|
+
"ISC",
|
|
68
|
+
"N",
|
|
69
|
+
"PIE",
|
|
70
|
+
"PT",
|
|
71
|
+
"RET",
|
|
72
|
+
"RUF",
|
|
73
|
+
"SIM",
|
|
74
|
+
"UP",
|
|
75
|
+
"W",
|
|
76
|
+
]
|
|
77
|
+
ignore = [
|
|
78
|
+
"B008",
|
|
79
|
+
"B905",
|
|
80
|
+
"E501",
|
|
81
|
+
]
|
|
82
|
+
unfixable = [
|
|
83
|
+
"F401",
|
|
84
|
+
]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# editorconfig.org
|
|
2
|
+
|
|
3
|
+
root = true
|
|
4
|
+
|
|
5
|
+
[*]
|
|
6
|
+
insert_final_newline = true
|
|
7
|
+
charset = utf-8
|
|
8
|
+
trim_trailing_whitespace = true
|
|
9
|
+
indent_style = tab
|
|
10
|
+
|
|
11
|
+
[*.{md,yml,yaml,json,toml,htm,html,js,css,svg,sh,bash,fish}]
|
|
12
|
+
indent_style = space
|
|
13
|
+
indent_size = 2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gitdir: ../../.git/modules/task/task
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* text=auto
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
|
6
|
+
|
|
7
|
+
## Our Standards
|
|
8
|
+
|
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
|
10
|
+
|
|
11
|
+
* Using welcoming and inclusive language
|
|
12
|
+
* Being respectful of differing viewpoints and experiences
|
|
13
|
+
* Gracefully accepting constructive criticism
|
|
14
|
+
* Focusing on what is best for the community
|
|
15
|
+
* Showing empathy towards other community members
|
|
16
|
+
|
|
17
|
+
Examples of unacceptable behavior by participants include:
|
|
18
|
+
|
|
19
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
|
20
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
21
|
+
* Public or private harassment
|
|
22
|
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
|
23
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
24
|
+
|
|
25
|
+
## Our Responsibilities
|
|
26
|
+
|
|
27
|
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
|
28
|
+
|
|
29
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
|
30
|
+
|
|
31
|
+
## Scope
|
|
32
|
+
|
|
33
|
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
|
34
|
+
|
|
35
|
+
## Enforcement
|
|
36
|
+
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at andrey@nering.com.br. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
|
+
|
|
39
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
|
40
|
+
|
|
41
|
+
## Attribution
|
|
42
|
+
|
|
43
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
|
44
|
+
|
|
45
|
+
[homepage]: http://contributor-covenant.org
|
|
46
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
## You can find our [contribution guide on our website][contributing]
|
|
2
|
+
|
|
3
|
+
- Please read it carefully before opening a PR.
|
|
4
|
+
- If you have any questions, you can:
|
|
5
|
+
- [Open an issue][issues]
|
|
6
|
+
- [Create a discussion][discussions]
|
|
7
|
+
- [Chat to us on Discord][discord]
|
|
8
|
+
|
|
9
|
+
<!-- prettier-ignore-start -->
|
|
10
|
+
[contributing]: https://taskfile.dev/contributing
|
|
11
|
+
[issues]: https://github.com/go-task/task/issues
|
|
12
|
+
[discussions]: https://github.com/go-task/task/discussions
|
|
13
|
+
[discord]: https://discord.gg/6TY36E39UK
|
|
14
|
+
<!-- prettier-ignore-end -->
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug Report
|
|
3
|
+
about: Use this to report bugs and issues
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!--
|
|
7
|
+
|
|
8
|
+
Thanks for your bug report!
|
|
9
|
+
|
|
10
|
+
Before submitting this issue, please make sure the same problem was not
|
|
11
|
+
already reported by someone else.
|
|
12
|
+
|
|
13
|
+
Please describe the bug you're facing. Consider pasting example Taskfiles
|
|
14
|
+
showing how to reproduce the problem.
|
|
15
|
+
|
|
16
|
+
-->
|
|
17
|
+
|
|
18
|
+
- Task version:
|
|
19
|
+
- Operating system:
|
|
20
|
+
- Experiments enabled:
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Extension for Visual Studio Code
|
|
4
|
+
url: https://github.com/go-task/vscode-task
|
|
5
|
+
about: Issues related to the Visual Studio Code extension should be opened here.
|
|
6
|
+
- name: Help forum on Discord
|
|
7
|
+
url: https://discord.com/channels/974121106208354339/1025054680289660989
|
|
8
|
+
about: 'The Discord #help channel is the best way to get help from the community.'
|
|
9
|
+
- name: Questions, Ideas and General Discussions
|
|
10
|
+
url: https://github.com/go-task/task/discussions
|
|
11
|
+
about: Ask questions and discuss general ideas with the community.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature Request
|
|
3
|
+
about: Use this to make feature requests
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!--
|
|
7
|
+
|
|
8
|
+
Describe in detail what feature do you want to see in Task.
|
|
9
|
+
Give examples if possible.
|
|
10
|
+
|
|
11
|
+
Please, search if this wasn't proposed before, and if this is more like an idea
|
|
12
|
+
than a strong feature request, consider opening a
|
|
13
|
+
[discussion](https://github.com/go-task/task/discussions) instead.
|
|
14
|
+
|
|
15
|
+
-->
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
updates:
|
|
4
|
+
- package-ecosystem: gomod
|
|
5
|
+
directory: /
|
|
6
|
+
schedule:
|
|
7
|
+
interval: weekly
|
|
8
|
+
day: saturday
|
|
9
|
+
time: '08:00'
|
|
10
|
+
timezone: America/Sao_Paulo
|
|
11
|
+
labels:
|
|
12
|
+
- "area: dependencies"
|
|
13
|
+
- "lang: go"
|
|
14
|
+
|
|
15
|
+
- package-ecosystem: npm
|
|
16
|
+
directory: /
|
|
17
|
+
schedule:
|
|
18
|
+
interval: weekly
|
|
19
|
+
day: saturday
|
|
20
|
+
time: '08:00'
|
|
21
|
+
timezone: America/Sao_Paulo
|
|
22
|
+
labels:
|
|
23
|
+
- "area: dependencies"
|
|
24
|
+
- "lang: javascript"
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: issue awaiting response
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
issue_comment:
|
|
5
|
+
types: [created]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
issue-awaiting-response:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: actions/github-script@v6
|
|
12
|
+
with:
|
|
13
|
+
github-token: ${{secrets.GH_PAT}}
|
|
14
|
+
script: |
|
|
15
|
+
const issue = await github.rest.issues.get({
|
|
16
|
+
owner: context.repo.owner,
|
|
17
|
+
repo: context.repo.repo,
|
|
18
|
+
issue_number: context.issue.number,
|
|
19
|
+
})
|
|
20
|
+
const comments = await github.paginate(
|
|
21
|
+
github.rest.issues.listComments, {
|
|
22
|
+
owner: context.repo.owner,
|
|
23
|
+
repo: context.repo.repo,
|
|
24
|
+
issue_number: context.issue.number,
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
const labels = await github.paginate(
|
|
28
|
+
github.rest.issues.listLabelsOnIssue, {
|
|
29
|
+
issue_number: context.issue.number,
|
|
30
|
+
owner: context.repo.owner,
|
|
31
|
+
repo: context.repo.repo,
|
|
32
|
+
}
|
|
33
|
+
)
|
|
34
|
+
if (labels.find(label => label.name === 'state: awaiting response')) {
|
|
35
|
+
if (comments[comments.length-1].user?.login === issue.data.user?.login) {
|
|
36
|
+
github.rest.issues.removeLabel({
|
|
37
|
+
owner: context.repo.owner,
|
|
38
|
+
repo: context.repo.repo,
|
|
39
|
+
issue_number: context.issue.number,
|
|
40
|
+
name: 'state: awaiting response'
|
|
41
|
+
})
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: issue closed
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
issues:
|
|
5
|
+
types: [closed]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
issue-closed:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: actions/github-script@v6
|
|
12
|
+
with:
|
|
13
|
+
github-token: ${{secrets.GH_PAT}}
|
|
14
|
+
script: |
|
|
15
|
+
const labels = await github.paginate(
|
|
16
|
+
github.rest.issues.listLabelsOnIssue, {
|
|
17
|
+
issue_number: context.issue.number,
|
|
18
|
+
owner: context.repo.owner,
|
|
19
|
+
repo: context.repo.repo,
|
|
20
|
+
}
|
|
21
|
+
)
|
|
22
|
+
if (labels.find(label => label.name === 'state: needs triage')) {
|
|
23
|
+
github.rest.issues.removeLabel({
|
|
24
|
+
owner: context.repo.owner,
|
|
25
|
+
repo: context.repo.repo,
|
|
26
|
+
issue_number: context.issue.number,
|
|
27
|
+
name: 'state: needs triage'
|
|
28
|
+
})
|
|
29
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
name: issue experiment
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
issues:
|
|
5
|
+
types: [labeled]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
issue-experiment-proposed:
|
|
9
|
+
if: github.event.label.name == format('experiment{0} proposed', ':')
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/github-script@v6
|
|
13
|
+
with:
|
|
14
|
+
github-token: ${{secrets.GH_PAT}}
|
|
15
|
+
script: |
|
|
16
|
+
github.rest.issues.createComment({
|
|
17
|
+
issue_number: context.issue.number,
|
|
18
|
+
owner: context.repo.owner,
|
|
19
|
+
repo: context.repo.repo,
|
|
20
|
+
body: 'This issue has been marked as an experiment proposal! :test_tube: It will now enter a period of consultation during which we encourage the community to provide feedback on the proposed design. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
21
|
+
})
|
|
22
|
+
issue-experiment-draft:
|
|
23
|
+
if: github.event.label.name == format('experiment{0} draft', ':')
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
steps:
|
|
26
|
+
- uses: actions/github-script@v6
|
|
27
|
+
with:
|
|
28
|
+
github-token: ${{secrets.GH_PAT}}
|
|
29
|
+
script: |
|
|
30
|
+
github.rest.issues.createComment({
|
|
31
|
+
issue_number: context.issue.number,
|
|
32
|
+
owner: context.repo.owner,
|
|
33
|
+
repo: context.repo.repo,
|
|
34
|
+
body: 'This experiment has been marked as a draft! :sparkles: This means that an initial implementation has been added to the latest release of Task! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
35
|
+
})
|
|
36
|
+
issue-experiment-candidate:
|
|
37
|
+
if: github.event.label.name == format('experiment{0} candidate', ':')
|
|
38
|
+
runs-on: ubuntu-latest
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/github-script@v6
|
|
41
|
+
with:
|
|
42
|
+
github-token: ${{secrets.GH_PAT}}
|
|
43
|
+
script: |
|
|
44
|
+
github.rest.issues.createComment({
|
|
45
|
+
issue_number: context.issue.number,
|
|
46
|
+
owner: context.repo.owner,
|
|
47
|
+
repo: context.repo.repo,
|
|
48
|
+
body: 'This experiment has been marked as a candidate! :fire: This means that the implementation is nearing completion and we are entering a period for final comments and feedback! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
49
|
+
})
|
|
50
|
+
issue-experiment-stable:
|
|
51
|
+
if: github.event.label.name == format('experiment{0} stable', ':')
|
|
52
|
+
runs-on: ubuntu-latest
|
|
53
|
+
steps:
|
|
54
|
+
- uses: actions/github-script@v6
|
|
55
|
+
with:
|
|
56
|
+
github-token: ${{secrets.GH_PAT}}
|
|
57
|
+
script: |
|
|
58
|
+
github.rest.issues.createComment({
|
|
59
|
+
issue_number: context.issue.number,
|
|
60
|
+
owner: context.repo.owner,
|
|
61
|
+
repo: context.repo.repo,
|
|
62
|
+
body: 'This experiment has been marked as stable! :metal: This means that the implementation is now final and ready to be released. No more changes will be made and the experiment is safe to use in production! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
63
|
+
})
|
|
64
|
+
issue-experiment-released:
|
|
65
|
+
if: github.event.label.name == format('experiment{0} released', ':')
|
|
66
|
+
runs-on: ubuntu-latest
|
|
67
|
+
steps:
|
|
68
|
+
- uses: actions/github-script@v6
|
|
69
|
+
with:
|
|
70
|
+
github-token: ${{secrets.GH_PAT}}
|
|
71
|
+
script: |
|
|
72
|
+
github.rest.issues.createComment({
|
|
73
|
+
issue_number: context.issue.number,
|
|
74
|
+
owner: context.repo.owner,
|
|
75
|
+
repo: context.repo.repo,
|
|
76
|
+
body: 'This experiment has been released! :rocket: This means that it is no longer an experiment and is available in the latest major version of Task. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
77
|
+
})
|
|
78
|
+
github.rest.issues.update({
|
|
79
|
+
issue_number: context.issue.number,
|
|
80
|
+
owner: context.repo.owner,
|
|
81
|
+
repo: context.repo.repo,
|
|
82
|
+
state: 'closed'
|
|
83
|
+
})
|
|
84
|
+
issue-experiment-abandoned:
|
|
85
|
+
if: github.event.label.name == format('experiment{0} abandoned', ':')
|
|
86
|
+
runs-on: ubuntu-latest
|
|
87
|
+
steps:
|
|
88
|
+
- uses: actions/github-script@v6
|
|
89
|
+
with:
|
|
90
|
+
github-token: ${{secrets.GH_PAT}}
|
|
91
|
+
script: |
|
|
92
|
+
github.rest.issues.createComment({
|
|
93
|
+
issue_number: context.issue.number,
|
|
94
|
+
owner: context.repo.owner,
|
|
95
|
+
repo: context.repo.repo,
|
|
96
|
+
body: 'This experiment has been abandoned. :disappointed: This means that this feature will not be added to Task and any experimental functionality will be removed. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
97
|
+
})
|
|
98
|
+
github.rest.issues.update({
|
|
99
|
+
issue_number: context.issue.number,
|
|
100
|
+
owner: context.repo.owner,
|
|
101
|
+
repo: context.repo.repo,
|
|
102
|
+
state: 'closed'
|
|
103
|
+
})
|
|
104
|
+
issue-experiment-superseded:
|
|
105
|
+
if: github.event.label.name == format('experiment{0} superseded', ':')
|
|
106
|
+
runs-on: ubuntu-latest
|
|
107
|
+
steps:
|
|
108
|
+
- uses: actions/github-script@v6
|
|
109
|
+
with:
|
|
110
|
+
github-token: ${{secrets.GH_PAT}}
|
|
111
|
+
script: |
|
|
112
|
+
github.rest.issues.createComment({
|
|
113
|
+
issue_number: context.issue.number,
|
|
114
|
+
owner: context.repo.owner,
|
|
115
|
+
repo: context.repo.repo,
|
|
116
|
+
body: 'This experiment has been superseded. :seedling: This means that another experiment has replaced this one. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
|
|
117
|
+
})
|
|
118
|
+
github.rest.issues.update({
|
|
119
|
+
issue_number: context.issue.number,
|
|
120
|
+
owner: context.repo.owner,
|
|
121
|
+
repo: context.repo.repo,
|
|
122
|
+
state: 'closed'
|
|
123
|
+
})
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: issue needs triage
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
issues:
|
|
5
|
+
types: [opened]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
issue-needs-triage:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: actions/github-script@v6
|
|
12
|
+
with:
|
|
13
|
+
github-token: ${{secrets.GH_PAT}}
|
|
14
|
+
script: |
|
|
15
|
+
const labels = await github.paginate(
|
|
16
|
+
github.rest.issues.listLabelsOnIssue, {
|
|
17
|
+
issue_number: context.issue.number,
|
|
18
|
+
owner: context.repo.owner,
|
|
19
|
+
repo: context.repo.repo,
|
|
20
|
+
}
|
|
21
|
+
)
|
|
22
|
+
if (labels.length === 0) {
|
|
23
|
+
github.rest.issues.addLabels({
|
|
24
|
+
issue_number: context.issue.number,
|
|
25
|
+
owner: context.repo.owner,
|
|
26
|
+
repo: context.repo.repo,
|
|
27
|
+
labels: ['state: needs triage']
|
|
28
|
+
})
|
|
29
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Lint
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
tags:
|
|
7
|
+
- v*
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
lint:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/setup-go@v3
|
|
16
|
+
with:
|
|
17
|
+
go-version: 1.21.x
|
|
18
|
+
|
|
19
|
+
- uses: actions/checkout@v3
|
|
20
|
+
|
|
21
|
+
- name: golangci-lint
|
|
22
|
+
uses: golangci/golangci-lint-action@v3
|
|
23
|
+
with:
|
|
24
|
+
version: v1.51.1
|