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.

Files changed (574) hide show
  1. go_task_bin-3.30.1/LICENSE +22 -0
  2. go_task_bin-3.30.1/PKG-INFO +49 -0
  3. go_task_bin-3.30.1/README.md +36 -0
  4. go_task_bin-3.30.1/go_task_bin/__init__.py +0 -0
  5. go_task_bin-3.30.1/pdm_build.py +48 -0
  6. go_task_bin-3.30.1/pyproject.toml +84 -0
  7. go_task_bin-3.30.1/task/.editorconfig +13 -0
  8. go_task_bin-3.30.1/task/.git +1 -0
  9. go_task_bin-3.30.1/task/.gitattributes +1 -0
  10. go_task_bin-3.30.1/task/.github/CODE_OF_CONDUCT.md +46 -0
  11. go_task_bin-3.30.1/task/.github/CONTRIBUTING.md +14 -0
  12. go_task_bin-3.30.1/task/.github/FUNDING.yml +3 -0
  13. go_task_bin-3.30.1/task/.github/ISSUE_TEMPLATE/bug_report.md +20 -0
  14. go_task_bin-3.30.1/task/.github/ISSUE_TEMPLATE/config.yml +11 -0
  15. go_task_bin-3.30.1/task/.github/ISSUE_TEMPLATE/feature_request.md +15 -0
  16. go_task_bin-3.30.1/task/.github/dependabot.yml +24 -0
  17. go_task_bin-3.30.1/task/.github/pull_request_template.md +5 -0
  18. go_task_bin-3.30.1/task/.github/workflows/issue-awaiting-response.yml +43 -0
  19. go_task_bin-3.30.1/task/.github/workflows/issue-closed.yml +29 -0
  20. go_task_bin-3.30.1/task/.github/workflows/issue-experiment.yml +123 -0
  21. go_task_bin-3.30.1/task/.github/workflows/issue-needs-triage.yml +29 -0
  22. go_task_bin-3.30.1/task/.github/workflows/lint.yml +24 -0
  23. go_task_bin-3.30.1/task/.github/workflows/release.yml +26 -0
  24. go_task_bin-3.30.1/task/.github/workflows/sync-translated-documents.yml +36 -0
  25. go_task_bin-3.30.1/task/.github/workflows/test.yml +38 -0
  26. go_task_bin-3.30.1/task/.github/workflows/upload-source-documents.yml +38 -0
  27. go_task_bin-3.30.1/task/.gitignore +35 -0
  28. go_task_bin-3.30.1/task/.golangci.yml +18 -0
  29. go_task_bin-3.30.1/task/.goreleaser.yml +125 -0
  30. go_task_bin-3.30.1/task/.mockery.yaml +4 -0
  31. go_task_bin-3.30.1/task/.nvmrc +1 -0
  32. go_task_bin-3.30.1/task/.prettierignore +1 -0
  33. go_task_bin-3.30.1/task/.prettierrc.yml +7 -0
  34. go_task_bin-3.30.1/task/.vscode/settings-sample.json +5 -0
  35. go_task_bin-3.30.1/task/CHANGELOG.md +745 -0
  36. go_task_bin-3.30.1/task/LICENSE +21 -0
  37. go_task_bin-3.30.1/task/README.md +29 -0
  38. go_task_bin-3.30.1/task/Taskfile.yml +137 -0
  39. go_task_bin-3.30.1/task/args/args.go +56 -0
  40. go_task_bin-3.30.1/task/args/args_test.go +219 -0
  41. go_task_bin-3.30.1/task/bin/.keep +0 -0
  42. go_task_bin-3.30.1/task/cmd/release/main.go +134 -0
  43. go_task_bin-3.30.1/task/cmd/sleepit/sleepit.go +171 -0
  44. go_task_bin-3.30.1/task/cmd/task/task.go +340 -0
  45. go_task_bin-3.30.1/task/completion/bash/task.bash +55 -0
  46. go_task_bin-3.30.1/task/completion/fish/task.fish +37 -0
  47. go_task_bin-3.30.1/task/completion/ps/task.ps1 +28 -0
  48. go_task_bin-3.30.1/task/completion/zsh/_task +62 -0
  49. go_task_bin-3.30.1/task/concurrency.go +25 -0
  50. go_task_bin-3.30.1/task/docs/.gitignore +20 -0
  51. go_task_bin-3.30.1/task/docs/.nojekyll +0 -0
  52. go_task_bin-3.30.1/task/docs/.prettierignore +1 -0
  53. go_task_bin-3.30.1/task/docs/Taskfile.yml +64 -0
  54. go_task_bin-3.30.1/task/docs/babel.config.js +3 -0
  55. go_task_bin-3.30.1/task/docs/blog/2023-09-02-introducing-experiments.md +142 -0
  56. go_task_bin-3.30.1/task/docs/blog/authors.yml +10 -0
  57. go_task_bin-3.30.1/task/docs/constants.js +11 -0
  58. go_task_bin-3.30.1/task/docs/crowdin.yml +15 -0
  59. go_task_bin-3.30.1/task/docs/docs/api_reference.md +355 -0
  60. go_task_bin-3.30.1/task/docs/docs/changelog.md +750 -0
  61. go_task_bin-3.30.1/task/docs/docs/community.md +45 -0
  62. go_task_bin-3.30.1/task/docs/docs/contributing.md +167 -0
  63. go_task_bin-3.30.1/task/docs/docs/deprecations/deprecations.md +19 -0
  64. go_task_bin-3.30.1/task/docs/docs/deprecations/template.md +18 -0
  65. go_task_bin-3.30.1/task/docs/docs/deprecations/version_2_schema.md +27 -0
  66. go_task_bin-3.30.1/task/docs/docs/donate.md +51 -0
  67. go_task_bin-3.30.1/task/docs/docs/experiments/experiments.md +127 -0
  68. go_task_bin-3.30.1/task/docs/docs/experiments/gentle_force.md +30 -0
  69. go_task_bin-3.30.1/task/docs/docs/experiments/remote_taskfiles.md +81 -0
  70. go_task_bin-3.30.1/task/docs/docs/experiments/template.md +20 -0
  71. go_task_bin-3.30.1/task/docs/docs/faq.md +101 -0
  72. go_task_bin-3.30.1/task/docs/docs/installation.md +302 -0
  73. go_task_bin-3.30.1/task/docs/docs/integrations.md +86 -0
  74. go_task_bin-3.30.1/task/docs/docs/intro.md +71 -0
  75. go_task_bin-3.30.1/task/docs/docs/releasing.md +72 -0
  76. go_task_bin-3.30.1/task/docs/docs/styleguide.md +240 -0
  77. go_task_bin-3.30.1/task/docs/docs/taskfile_versions.md +264 -0
  78. go_task_bin-3.30.1/task/docs/docs/translate.md +22 -0
  79. go_task_bin-3.30.1/task/docs/docs/usage.md +1811 -0
  80. go_task_bin-3.30.1/task/docs/docusaurus.config.js +273 -0
  81. go_task_bin-3.30.1/task/docs/i18n/en/code.json +396 -0
  82. go_task_bin-3.30.1/task/docs/i18n/en/docusaurus-plugin-content-docs/current.json +6 -0
  83. go_task_bin-3.30.1/task/docs/i18n/en/docusaurus-theme-classic/footer.json +46 -0
  84. go_task_bin-3.30.1/task/docs/i18n/en/docusaurus-theme-classic/navbar.json +38 -0
  85. go_task_bin-3.30.1/task/docs/i18n/es-ES/code.json +396 -0
  86. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  87. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-blog/authors.yml +10 -0
  88. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  89. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  90. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/community.md +33 -0
  91. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/contributing.md +101 -0
  92. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  93. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  94. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  95. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/donate.md +44 -0
  96. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  97. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  98. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  99. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  100. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  101. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/faq.md +89 -0
  102. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md +266 -0
  103. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  104. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/intro.md +59 -0
  105. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md +50 -0
  106. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  107. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  108. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/translate.md +18 -0
  109. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  110. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current.json +6 -0
  111. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-theme-classic/footer.json +46 -0
  112. go_task_bin-3.30.1/task/docs/i18n/es-ES/docusaurus-theme-classic/navbar.json +38 -0
  113. go_task_bin-3.30.1/task/docs/i18n/fr-FR/code.json +396 -0
  114. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  115. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-blog/authors.yml +10 -0
  116. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  117. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  118. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/community.md +33 -0
  119. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/contributing.md +101 -0
  120. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  121. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  122. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  123. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/donate.md +44 -0
  124. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  125. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  126. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  127. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  128. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  129. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/faq.md +89 -0
  130. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md +266 -0
  131. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  132. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/intro.md +59 -0
  133. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md +50 -0
  134. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  135. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  136. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/translate.md +18 -0
  137. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  138. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current.json +6 -0
  139. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-theme-classic/footer.json +46 -0
  140. go_task_bin-3.30.1/task/docs/i18n/fr-FR/docusaurus-theme-classic/navbar.json +38 -0
  141. go_task_bin-3.30.1/task/docs/i18n/ja-JP/code.json +396 -0
  142. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  143. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-blog/authors.yml +10 -0
  144. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  145. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  146. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/community.md +33 -0
  147. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/contributing.md +101 -0
  148. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  149. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  150. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  151. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/donate.md +44 -0
  152. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  153. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  154. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  155. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  156. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  157. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq.md +89 -0
  158. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md +266 -0
  159. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  160. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/intro.md +59 -0
  161. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md +50 -0
  162. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  163. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  164. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/translate.md +18 -0
  165. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  166. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current.json +6 -0
  167. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-theme-classic/footer.json +46 -0
  168. go_task_bin-3.30.1/task/docs/i18n/ja-JP/docusaurus-theme-classic/navbar.json +38 -0
  169. go_task_bin-3.30.1/task/docs/i18n/pt-BR/code.json +396 -0
  170. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  171. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-blog/authors.yml +10 -0
  172. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  173. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  174. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/community.md +33 -0
  175. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/contributing.md +101 -0
  176. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  177. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  178. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  179. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/donate.md +44 -0
  180. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  181. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  182. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  183. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  184. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  185. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/faq.md +89 -0
  186. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md +266 -0
  187. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  188. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md +59 -0
  189. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md +50 -0
  190. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  191. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  192. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/translate.md +18 -0
  193. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  194. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json +6 -0
  195. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json +46 -0
  196. go_task_bin-3.30.1/task/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json +38 -0
  197. go_task_bin-3.30.1/task/docs/i18n/ru-RU/code.json +396 -0
  198. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  199. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/authors.yml +10 -0
  200. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  201. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  202. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/community.md +33 -0
  203. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/contributing.md +101 -0
  204. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  205. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  206. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  207. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/donate.md +44 -0
  208. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  209. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  210. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  211. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  212. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  213. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/faq.md +89 -0
  214. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md +266 -0
  215. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  216. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/intro.md +59 -0
  217. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md +50 -0
  218. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  219. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  220. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/translate.md +18 -0
  221. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  222. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current.json +6 -0
  223. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-theme-classic/footer.json +46 -0
  224. go_task_bin-3.30.1/task/docs/i18n/ru-RU/docusaurus-theme-classic/navbar.json +38 -0
  225. go_task_bin-3.30.1/task/docs/i18n/tr-TR/code.json +396 -0
  226. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  227. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/authors.yml +10 -0
  228. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  229. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  230. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/community.md +33 -0
  231. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/contributing.md +101 -0
  232. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  233. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  234. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  235. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/donate.md +44 -0
  236. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  237. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  238. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  239. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  240. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  241. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/faq.md +89 -0
  242. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md +266 -0
  243. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  244. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/intro.md +59 -0
  245. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md +50 -0
  246. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  247. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  248. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/translate.md +18 -0
  249. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  250. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current.json +6 -0
  251. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-theme-classic/footer.json +46 -0
  252. go_task_bin-3.30.1/task/docs/i18n/tr-TR/docusaurus-theme-classic/navbar.json +38 -0
  253. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/code.json +396 -0
  254. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  255. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/authors.yml +10 -0
  256. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md +341 -0
  257. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +509 -0
  258. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community.md +33 -0
  259. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing.md +102 -0
  260. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +12 -0
  261. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/template.md +17 -0
  262. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +22 -0
  263. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/donate.md +44 -0
  264. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/experiments.md +78 -0
  265. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -0
  266. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +54 -0
  267. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/template.md +20 -0
  268. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/workflow.md +50 -0
  269. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/faq.md +89 -0
  270. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md +264 -0
  271. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/integrations.md +62 -0
  272. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/intro.md +54 -0
  273. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md +46 -0
  274. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/styleguide.md +233 -0
  275. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md +240 -0
  276. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/translate.md +18 -0
  277. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage.md +1587 -0
  278. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current.json +6 -0
  279. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-theme-classic/footer.json +46 -0
  280. go_task_bin-3.30.1/task/docs/i18n/zh-Hans/docusaurus-theme-classic/navbar.json +38 -0
  281. go_task_bin-3.30.1/task/docs/package.json +43 -0
  282. go_task_bin-3.30.1/task/docs/prettier.config.js +13 -0
  283. go_task_bin-3.30.1/task/docs/sidebars.js +17 -0
  284. go_task_bin-3.30.1/task/docs/src/api/crowdin.js +50 -0
  285. go_task_bin-3.30.1/task/docs/src/components/.keep +0 -0
  286. go_task_bin-3.30.1/task/docs/src/css/carbon.css +65 -0
  287. go_task_bin-3.30.1/task/docs/src/css/custom.css +78 -0
  288. go_task_bin-3.30.1/task/docs/src/pages/.keep +0 -0
  289. go_task_bin-3.30.1/task/docs/src/themes/prismDark.js +79 -0
  290. go_task_bin-3.30.1/task/docs/src/themes/prismLight.js +100 -0
  291. go_task_bin-3.30.1/task/docs/static/.nojekyll +0 -0
  292. go_task_bin-3.30.1/task/docs/static/CNAME +1 -0
  293. go_task_bin-3.30.1/task/docs/static/img/appwrite.svg +7 -0
  294. go_task_bin-3.30.1/task/docs/static/img/favicon.ico +0 -0
  295. go_task_bin-3.30.1/task/docs/static/img/logo.png +0 -0
  296. go_task_bin-3.30.1/task/docs/static/img/logo.svg +1 -0
  297. go_task_bin-3.30.1/task/docs/static/img/logo_mono.svg +1 -0
  298. go_task_bin-3.30.1/task/docs/static/img/og-image.png +0 -0
  299. go_task_bin-3.30.1/task/docs/static/img/pix.png +0 -0
  300. go_task_bin-3.30.1/task/docs/static/install.sh +387 -0
  301. go_task_bin-3.30.1/task/docs/static/js/carbon.js +29 -0
  302. go_task_bin-3.30.1/task/docs/static/schema.json +621 -0
  303. go_task_bin-3.30.1/task/docs/yarn.lock +8892 -0
  304. go_task_bin-3.30.1/task/errors/errors.go +56 -0
  305. go_task_bin-3.30.1/task/errors/errors_task.go +147 -0
  306. go_task_bin-3.30.1/task/errors/errors_taskfile.go +122 -0
  307. go_task_bin-3.30.1/task/go.mod +33 -0
  308. go_task_bin-3.30.1/task/go.sum +64 -0
  309. go_task_bin-3.30.1/task/hash.go +28 -0
  310. go_task_bin-3.30.1/task/help.go +196 -0
  311. go_task_bin-3.30.1/task/init.go +41 -0
  312. go_task_bin-3.30.1/task/install-task.sh +387 -0
  313. go_task_bin-3.30.1/task/internal/compiler/compiler.go +15 -0
  314. go_task_bin-3.30.1/task/internal/compiler/env.go +20 -0
  315. go_task_bin-3.30.1/task/internal/compiler/v2/compiler_v2.go +131 -0
  316. go_task_bin-3.30.1/task/internal/compiler/v3/compiler_v3.go +197 -0
  317. go_task_bin-3.30.1/task/internal/deepcopy/deepcopy.go +35 -0
  318. go_task_bin-3.30.1/task/internal/editors/output.go +23 -0
  319. go_task_bin-3.30.1/task/internal/env/env.go +31 -0
  320. go_task_bin-3.30.1/task/internal/execext/devnull.go +13 -0
  321. go_task_bin-3.30.1/task/internal/execext/exec.go +146 -0
  322. go_task_bin-3.30.1/task/internal/experiments/experiments.go +55 -0
  323. go_task_bin-3.30.1/task/internal/filepathext/filepathext.go +57 -0
  324. go_task_bin-3.30.1/task/internal/fingerprint/checker.go +20 -0
  325. go_task_bin-3.30.1/task/internal/fingerprint/glob.go +51 -0
  326. go_task_bin-3.30.1/task/internal/fingerprint/sources.go +16 -0
  327. go_task_bin-3.30.1/task/internal/fingerprint/sources_checksum.go +123 -0
  328. go_task_bin-3.30.1/task/internal/fingerprint/sources_checksum_test.go +21 -0
  329. go_task_bin-3.30.1/task/internal/fingerprint/sources_none.go +23 -0
  330. go_task_bin-3.30.1/task/internal/fingerprint/sources_timestamp.go +151 -0
  331. go_task_bin-3.30.1/task/internal/fingerprint/status.go +36 -0
  332. go_task_bin-3.30.1/task/internal/fingerprint/task.go +132 -0
  333. go_task_bin-3.30.1/task/internal/fingerprint/task_test.go +173 -0
  334. go_task_bin-3.30.1/task/internal/goext/meta.go +62 -0
  335. go_task_bin-3.30.1/task/internal/hash/hash.go +24 -0
  336. go_task_bin-3.30.1/task/internal/logger/logger.go +123 -0
  337. go_task_bin-3.30.1/task/internal/mocks/sources_checkable.go +225 -0
  338. go_task_bin-3.30.1/task/internal/mocks/status_checkable.go +92 -0
  339. go_task_bin-3.30.1/task/internal/orderedmap/orderedmap.go +164 -0
  340. go_task_bin-3.30.1/task/internal/orderedmap/orderedmap_test.go +121 -0
  341. go_task_bin-3.30.1/task/internal/output/group.go +51 -0
  342. go_task_bin-3.30.1/task/internal/output/interleaved.go +11 -0
  343. go_task_bin-3.30.1/task/internal/output/output.go +52 -0
  344. go_task_bin-3.30.1/task/internal/output/output_test.go +134 -0
  345. go_task_bin-3.30.1/task/internal/output/prefixed.go +66 -0
  346. go_task_bin-3.30.1/task/internal/slicesext/slicesext.go +20 -0
  347. go_task_bin-3.30.1/task/internal/sort/sorter.go +44 -0
  348. go_task_bin-3.30.1/task/internal/sort/sorter_test.go +77 -0
  349. go_task_bin-3.30.1/task/internal/summary/summary.go +118 -0
  350. go_task_bin-3.30.1/task/internal/summary/summary_test.go +171 -0
  351. go_task_bin-3.30.1/task/internal/sysinfo/uid.go +22 -0
  352. go_task_bin-3.30.1/task/internal/sysinfo/uid_win.go +9 -0
  353. go_task_bin-3.30.1/task/internal/templater/funcs.go +65 -0
  354. go_task_bin-3.30.1/task/internal/templater/templater.go +111 -0
  355. go_task_bin-3.30.1/task/internal/term/term.go +11 -0
  356. go_task_bin-3.30.1/task/internal/version/version.go +25 -0
  357. go_task_bin-3.30.1/task/package-lock.json +32 -0
  358. go_task_bin-3.30.1/task/package.json +34 -0
  359. go_task_bin-3.30.1/task/precondition.go +30 -0
  360. go_task_bin-3.30.1/task/requires.go +35 -0
  361. go_task_bin-3.30.1/task/setup.go +352 -0
  362. go_task_bin-3.30.1/task/signals.go +31 -0
  363. go_task_bin-3.30.1/task/signals_test.go +241 -0
  364. go_task_bin-3.30.1/task/status.go +54 -0
  365. go_task_bin-3.30.1/task/task.go +506 -0
  366. go_task_bin-3.30.1/task/task_test.go +2291 -0
  367. go_task_bin-3.30.1/task/taskfile/call.go +9 -0
  368. go_task_bin-3.30.1/task/taskfile/cmd.go +117 -0
  369. go_task_bin-3.30.1/task/taskfile/dep.go +53 -0
  370. go_task_bin-3.30.1/task/taskfile/for.go +68 -0
  371. go_task_bin-3.30.1/task/taskfile/included_taskfile.go +172 -0
  372. go_task_bin-3.30.1/task/taskfile/location.go +18 -0
  373. go_task_bin-3.30.1/task/taskfile/merge.go +80 -0
  374. go_task_bin-3.30.1/task/taskfile/output.go +65 -0
  375. go_task_bin-3.30.1/task/taskfile/platforms.go +100 -0
  376. go_task_bin-3.30.1/task/taskfile/platforms_test.go +50 -0
  377. go_task_bin-3.30.1/task/taskfile/precondition.go +59 -0
  378. go_task_bin-3.30.1/task/taskfile/precondition_test.go +51 -0
  379. go_task_bin-3.30.1/task/taskfile/read/cache.go +58 -0
  380. go_task_bin-3.30.1/task/taskfile/read/dotenv.go +51 -0
  381. go_task_bin-3.30.1/task/taskfile/read/node.go +44 -0
  382. go_task_bin-3.30.1/task/taskfile/read/node_base.go +47 -0
  383. go_task_bin-3.30.1/task/taskfile/read/node_file.go +54 -0
  384. go_task_bin-3.30.1/task/taskfile/read/node_http.go +67 -0
  385. go_task_bin-3.30.1/task/taskfile/read/taskfile.go +382 -0
  386. go_task_bin-3.30.1/task/taskfile/read/taskvars.go +45 -0
  387. go_task_bin-3.30.1/task/taskfile/requires.go +18 -0
  388. go_task_bin-3.30.1/task/taskfile/task.go +187 -0
  389. go_task_bin-3.30.1/task/taskfile/taskfile.go +89 -0
  390. go_task_bin-3.30.1/task/taskfile/taskfile_test.go +98 -0
  391. go_task_bin-3.30.1/task/taskfile/tasks.go +54 -0
  392. go_task_bin-3.30.1/task/taskfile/var.go +103 -0
  393. go_task_bin-3.30.1/task/testdata/alias/Taskfile.yml +19 -0
  394. go_task_bin-3.30.1/task/testdata/alias/Taskfile2.yml +7 -0
  395. go_task_bin-3.30.1/task/testdata/alias/alias-summary.txt +11 -0
  396. go_task_bin-3.30.1/task/testdata/alias/alias.txt +6 -0
  397. go_task_bin-3.30.1/task/testdata/checksum/.gitignore +2 -0
  398. go_task_bin-3.30.1/task/testdata/checksum/Taskfile.yml +20 -0
  399. go_task_bin-3.30.1/task/testdata/checksum/source.txt +1 -0
  400. go_task_bin-3.30.1/task/testdata/concurrency/Taskfile.yml +32 -0
  401. go_task_bin-3.30.1/task/testdata/cyclic/Taskfile.yml +10 -0
  402. go_task_bin-3.30.1/task/testdata/deferred/Taskfile.yml +12 -0
  403. go_task_bin-3.30.1/task/testdata/deps/.gitignore +1 -0
  404. go_task_bin-3.30.1/task/testdata/deps/Taskfile.yml +56 -0
  405. go_task_bin-3.30.1/task/testdata/dir/Taskfile.yml +7 -0
  406. go_task_bin-3.30.1/task/testdata/dir/dynamic_var/.gitignore +1 -0
  407. go_task_bin-3.30.1/task/testdata/dir/dynamic_var/Taskfile.yml +33 -0
  408. go_task_bin-3.30.1/task/testdata/dir/dynamic_var/subdirectory/Taskfile.yml +19 -0
  409. go_task_bin-3.30.1/task/testdata/dir/dynamic_var_on_created_dir/Taskfile.yml +10 -0
  410. go_task_bin-3.30.1/task/testdata/dir/explicit_doesnt_exist/Taskfile.yml +8 -0
  411. go_task_bin-3.30.1/task/testdata/dir/explicit_exists/Taskfile.yml +8 -0
  412. go_task_bin-3.30.1/task/testdata/dir/explicit_exists/exists/.keep +0 -0
  413. go_task_bin-3.30.1/task/testdata/dotenv/.gitignore +1 -0
  414. go_task_bin-3.30.1/task/testdata/dotenv/default/Taskfile.yml +8 -0
  415. go_task_bin-3.30.1/task/testdata/dotenv/env_var_in_path/.env.testing +1 -0
  416. go_task_bin-3.30.1/task/testdata/dotenv/env_var_in_path/Taskfile.yml +8 -0
  417. go_task_bin-3.30.1/task/testdata/dotenv/error_included_envs/Taskfile.yml +9 -0
  418. go_task_bin-3.30.1/task/testdata/dotenv/include1/.env +1 -0
  419. go_task_bin-3.30.1/task/testdata/dotenv/include1/Taskfile.yml +3 -0
  420. go_task_bin-3.30.1/task/testdata/dotenv/include1/envs/.env +1 -0
  421. go_task_bin-3.30.1/task/testdata/dotenv/local_env_in_path/.env.testing +1 -0
  422. go_task_bin-3.30.1/task/testdata/dotenv/local_env_in_path/Taskfile.yml +11 -0
  423. go_task_bin-3.30.1/task/testdata/dotenv/local_var_in_path/.env.testing +1 -0
  424. go_task_bin-3.30.1/task/testdata/dotenv/local_var_in_path/Taskfile.yml +13 -0
  425. go_task_bin-3.30.1/task/testdata/dotenv/missing_env/Taskfile.yml +8 -0
  426. go_task_bin-3.30.1/task/testdata/dotenv_task/default/.env +1 -0
  427. go_task_bin-3.30.1/task/testdata/dotenv_task/default/.gitignore +1 -0
  428. go_task_bin-3.30.1/task/testdata/dotenv_task/default/Taskfile.yml +28 -0
  429. go_task_bin-3.30.1/task/testdata/dry/Taskfile.yml +6 -0
  430. go_task_bin-3.30.1/task/testdata/dry_checksum/Taskfile.yml +9 -0
  431. go_task_bin-3.30.1/task/testdata/dry_checksum/source.txt +1 -0
  432. go_task_bin-3.30.1/task/testdata/empty_task/Taskfile.yml +4 -0
  433. go_task_bin-3.30.1/task/testdata/env/.gitignore +1 -0
  434. go_task_bin-3.30.1/task/testdata/env/Taskfile.yml +33 -0
  435. go_task_bin-3.30.1/task/testdata/error_code/Taskfile.yml +10 -0
  436. go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +17 -0
  437. go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/shared/b +1 -0
  438. go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/shared/inner_shared/c +1 -0
  439. go_task_bin-3.30.1/task/testdata/evaluate_symlinks_in_paths/src/a +1 -0
  440. go_task_bin-3.30.1/task/testdata/exit_immediately/Taskfile.yml +6 -0
  441. go_task_bin-3.30.1/task/testdata/expand/Taskfile.yml +8 -0
  442. go_task_bin-3.30.1/task/testdata/file_names/.gitignore +1 -0
  443. go_task_bin-3.30.1/task/testdata/file_names/Taskfile.dist.yaml/Taskfile.dist.yaml +4 -0
  444. go_task_bin-3.30.1/task/testdata/file_names/Taskfile.dist.yml/Taskfile.dist.yml +4 -0
  445. go_task_bin-3.30.1/task/testdata/file_names/Taskfile.yaml/Taskfile.yaml +4 -0
  446. go_task_bin-3.30.1/task/testdata/file_names/Taskfile.yml/Taskfile.yml +4 -0
  447. go_task_bin-3.30.1/task/testdata/for/Taskfile.yml +93 -0
  448. go_task_bin-3.30.1/task/testdata/for/bar.txt +1 -0
  449. go_task_bin-3.30.1/task/testdata/for/foo.txt +1 -0
  450. go_task_bin-3.30.1/task/testdata/force/Taskfile.yml +19 -0
  451. go_task_bin-3.30.1/task/testdata/generates/.gitignore +1 -0
  452. go_task_bin-3.30.1/task/testdata/generates/Taskfile.yml +52 -0
  453. go_task_bin-3.30.1/task/testdata/generates/sub/.keep +0 -0
  454. go_task_bin-3.30.1/task/testdata/ignore_errors/Taskfile.yml +20 -0
  455. go_task_bin-3.30.1/task/testdata/ignore_nil_elements/cmds/Taskfile.yml +7 -0
  456. go_task_bin-3.30.1/task/testdata/ignore_nil_elements/deps/Taskfile.yml +11 -0
  457. go_task_bin-3.30.1/task/testdata/ignore_nil_elements/includes/Taskfile.yml +9 -0
  458. go_task_bin-3.30.1/task/testdata/ignore_nil_elements/includes/inc.yml +7 -0
  459. go_task_bin-3.30.1/task/testdata/ignore_nil_elements/preconditions/Taskfile.yml +9 -0
  460. go_task_bin-3.30.1/task/testdata/ignore_signals/Taskfile.yml +6 -0
  461. go_task_bin-3.30.1/task/testdata/include_with_vars/Taskfile.yml +20 -0
  462. go_task_bin-3.30.1/task/testdata/include_with_vars/include/Taskfile.include.yml +11 -0
  463. go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/Taskfile.yml +17 -0
  464. go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/bar/Taskfile.yml +7 -0
  465. go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/foo/Taskfile.yml +7 -0
  466. go_task_bin-3.30.1/task/testdata/include_with_vars_multi_level/lib/Taskfile.yml +9 -0
  467. go_task_bin-3.30.1/task/testdata/includes/.gitignore +1 -0
  468. go_task_bin-3.30.1/task/testdata/includes/Taskfile.yml +32 -0
  469. go_task_bin-3.30.1/task/testdata/includes/Taskfile2.yml +6 -0
  470. go_task_bin-3.30.1/task/testdata/includes/Taskfile_darwin.yml +4 -0
  471. go_task_bin-3.30.1/task/testdata/includes/Taskfile_linux.yml +4 -0
  472. go_task_bin-3.30.1/task/testdata/includes/Taskfile_windows.yml +4 -0
  473. go_task_bin-3.30.1/task/testdata/includes/included/Taskfile.yml +6 -0
  474. go_task_bin-3.30.1/task/testdata/includes/module1/Taskfile.yml +10 -0
  475. go_task_bin-3.30.1/task/testdata/includes/module2/Taskfile.yml +10 -0
  476. go_task_bin-3.30.1/task/testdata/includes_call_root_task/.gitignore +1 -0
  477. go_task_bin-3.30.1/task/testdata/includes_call_root_task/Taskfile.yml +9 -0
  478. go_task_bin-3.30.1/task/testdata/includes_call_root_task/Taskfile2.yml +6 -0
  479. go_task_bin-3.30.1/task/testdata/includes_cycle/Taskfile.yml +12 -0
  480. go_task_bin-3.30.1/task/testdata/includes_cycle/one/Taskfile.yml +9 -0
  481. go_task_bin-3.30.1/task/testdata/includes_cycle/one/two/Taskfile.yml +9 -0
  482. go_task_bin-3.30.1/task/testdata/includes_deps/.gitignore +1 -0
  483. go_task_bin-3.30.1/task/testdata/includes_deps/Taskfile.yml +9 -0
  484. go_task_bin-3.30.1/task/testdata/includes_deps/Taskfile2.yml +16 -0
  485. go_task_bin-3.30.1/task/testdata/includes_empty/.gitignore +1 -0
  486. go_task_bin-3.30.1/task/testdata/includes_empty/Taskfile.yml +4 -0
  487. go_task_bin-3.30.1/task/testdata/includes_empty/Taskfile2.yml +10 -0
  488. go_task_bin-3.30.1/task/testdata/includes_incorrect/Taskfile.yml +4 -0
  489. go_task_bin-3.30.1/task/testdata/includes_incorrect/incomplete.yml +4 -0
  490. go_task_bin-3.30.1/task/testdata/includes_internal/Taskfile.yml +15 -0
  491. go_task_bin-3.30.1/task/testdata/includes_internal/Taskfile2.yml +6 -0
  492. go_task_bin-3.30.1/task/testdata/includes_interpolation/Taskfile.yml +10 -0
  493. go_task_bin-3.30.1/task/testdata/includes_interpolation/included/Taskfile.yml +6 -0
  494. go_task_bin-3.30.1/task/testdata/includes_multi_level/Taskfile.yml +11 -0
  495. go_task_bin-3.30.1/task/testdata/includes_multi_level/called_one.txt +1 -0
  496. go_task_bin-3.30.1/task/testdata/includes_multi_level/called_three.txt +1 -0
  497. go_task_bin-3.30.1/task/testdata/includes_multi_level/called_two.txt +1 -0
  498. go_task_bin-3.30.1/task/testdata/includes_multi_level/one/Taskfile.yml +7 -0
  499. go_task_bin-3.30.1/task/testdata/includes_multi_level/one/two/Taskfile.yml +7 -0
  500. go_task_bin-3.30.1/task/testdata/includes_multi_level/one/two/three/Taskfile.yml +4 -0
  501. go_task_bin-3.30.1/task/testdata/includes_optional/.gitignore +1 -0
  502. go_task_bin-3.30.1/task/testdata/includes_optional/Taskfile.yml +11 -0
  503. go_task_bin-3.30.1/task/testdata/includes_optional_explicit_false/Taskfile.yml +11 -0
  504. go_task_bin-3.30.1/task/testdata/includes_optional_implicit_false/Taskfile.yml +9 -0
  505. go_task_bin-3.30.1/task/testdata/includes_rel_path/Taskfile.yml +10 -0
  506. go_task_bin-3.30.1/task/testdata/includes_rel_path/common/Taskfile.yml +4 -0
  507. go_task_bin-3.30.1/task/testdata/includes_rel_path/included/Taskfile.yml +6 -0
  508. go_task_bin-3.30.1/task/testdata/includes_shadowed_default/Taskfile.yml +10 -0
  509. go_task_bin-3.30.1/task/testdata/includes_shadowed_default/Taskfile2.yml +6 -0
  510. go_task_bin-3.30.1/task/testdata/includes_shadowed_default/file.txt +1 -0
  511. go_task_bin-3.30.1/task/testdata/includes_unshadowed_default/Taskfile.yml +5 -0
  512. go_task_bin-3.30.1/task/testdata/includes_unshadowed_default/Taskfile2.yml +6 -0
  513. go_task_bin-3.30.1/task/testdata/includes_unshadowed_default/file.txt +1 -0
  514. go_task_bin-3.30.1/task/testdata/includes_yaml/.gitignore +1 -0
  515. go_task_bin-3.30.1/task/testdata/includes_yaml/Custom.ext +16 -0
  516. go_task_bin-3.30.1/task/testdata/includes_yaml/included/Taskfile.yaml +6 -0
  517. go_task_bin-3.30.1/task/testdata/includes_yaml/included/custom.yaml +6 -0
  518. go_task_bin-3.30.1/task/testdata/incorrect_includes/Taskfile.yml +10 -0
  519. go_task_bin-3.30.1/task/testdata/incorrect_includes/included/Taskfile.yml +6 -0
  520. go_task_bin-3.30.1/task/testdata/init/.gitignore +1 -0
  521. go_task_bin-3.30.1/task/testdata/internal_task/Taskfile.yml +15 -0
  522. go_task_bin-3.30.1/task/testdata/label_list/Taskfile.yml +6 -0
  523. go_task_bin-3.30.1/task/testdata/label_status/Taskfile.yml +7 -0
  524. go_task_bin-3.30.1/task/testdata/label_summary/Taskfile.yml +8 -0
  525. go_task_bin-3.30.1/task/testdata/label_uptodate/Taskfile.yml +7 -0
  526. go_task_bin-3.30.1/task/testdata/label_var/Taskfile.yml +10 -0
  527. go_task_bin-3.30.1/task/testdata/list_mixed_desc/Taskfile.yml +12 -0
  528. go_task_bin-3.30.1/task/testdata/output_group/Taskfile.yml +16 -0
  529. go_task_bin-3.30.1/task/testdata/output_group_error_only/Taskfile.yml +17 -0
  530. go_task_bin-3.30.1/task/testdata/params/.gitignore +1 -0
  531. go_task_bin-3.30.1/task/testdata/params/Taskfile.yml +44 -0
  532. go_task_bin-3.30.1/task/testdata/platforms/Taskfile.yml +55 -0
  533. go_task_bin-3.30.1/task/testdata/precondition/Taskfile.yml +19 -0
  534. go_task_bin-3.30.1/task/testdata/precondition/foo.txt +0 -0
  535. go_task_bin-3.30.1/task/testdata/prompt/Taskfile.yml +16 -0
  536. go_task_bin-3.30.1/task/testdata/run/.gitignore +1 -0
  537. go_task_bin-3.30.1/task/testdata/run/Taskfile.yml +24 -0
  538. go_task_bin-3.30.1/task/testdata/shopts/command_level/Taskfile.yml +14 -0
  539. go_task_bin-3.30.1/task/testdata/shopts/global_level/Taskfile.yml +14 -0
  540. go_task_bin-3.30.1/task/testdata/shopts/task_level/Taskfile.yml +14 -0
  541. go_task_bin-3.30.1/task/testdata/short_task_notation/Taskfile.yml +12 -0
  542. go_task_bin-3.30.1/task/testdata/silent/Taskfile.yml +71 -0
  543. go_task_bin-3.30.1/task/testdata/single_cmd_dep/.gitignore +1 -0
  544. go_task_bin-3.30.1/task/testdata/single_cmd_dep/Taskfile.yml +8 -0
  545. go_task_bin-3.30.1/task/testdata/special_vars/Taskfile.yml +19 -0
  546. go_task_bin-3.30.1/task/testdata/special_vars/included/Taskfile.yml +9 -0
  547. go_task_bin-3.30.1/task/testdata/split_args/Taskfile.yml +6 -0
  548. go_task_bin-3.30.1/task/testdata/status/.gitignore +1 -0
  549. go_task_bin-3.30.1/task/testdata/status/Taskfile.yml +25 -0
  550. go_task_bin-3.30.1/task/testdata/status_vars/.gitignore +1 -0
  551. go_task_bin-3.30.1/task/testdata/status_vars/Taskfile.yml +10 -0
  552. go_task_bin-3.30.1/task/testdata/status_vars/source.txt +1 -0
  553. go_task_bin-3.30.1/task/testdata/summary/Taskfile.yml +26 -0
  554. go_task_bin-3.30.1/task/testdata/summary/task-with-summary.txt +22 -0
  555. go_task_bin-3.30.1/task/testdata/taskfile_walk/Taskfile.yml +7 -0
  556. go_task_bin-3.30.1/task/testdata/taskfile_walk/foo/bar/.gitkeep +0 -0
  557. go_task_bin-3.30.1/task/testdata/user_working_dir/Taskfile.yml +7 -0
  558. go_task_bin-3.30.1/task/testdata/user_working_dir_with_includes/Taskfile.yml +5 -0
  559. go_task_bin-3.30.1/task/testdata/user_working_dir_with_includes/included/Taskfile.yml +8 -0
  560. go_task_bin-3.30.1/task/testdata/user_working_dir_with_includes/somedir/.keep +0 -0
  561. go_task_bin-3.30.1/task/testdata/vars/v2/.gitignore +1 -0
  562. go_task_bin-3.30.1/task/testdata/vars/v2/Taskfile.yml +58 -0
  563. go_task_bin-3.30.1/task/testdata/vars/v2/Taskvars.yml +14 -0
  564. go_task_bin-3.30.1/task/testdata/vars/v2/multiline/Taskfile.yml +45 -0
  565. go_task_bin-3.30.1/task/testdata/vars/v3/.env +1 -0
  566. go_task_bin-3.30.1/task/testdata/vars/v3/.gitignore +1 -0
  567. go_task_bin-3.30.1/task/testdata/vars/v3/Taskfile.yml +51 -0
  568. go_task_bin-3.30.1/task/testdata/version/v1/Taskfile.yml +9 -0
  569. go_task_bin-3.30.1/task/testdata/version/v2/Taskfile.yml +9 -0
  570. go_task_bin-3.30.1/task/testdata/watcher_interval/.gitignore +1 -0
  571. go_task_bin-3.30.1/task/testdata/watcher_interval/Taskfile.yaml +16 -0
  572. go_task_bin-3.30.1/task/variables.go +244 -0
  573. go_task_bin-3.30.1/task/watch.go +181 -0
  574. 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,3 @@
1
+ github: [andreynering, pd93]
2
+ open_collective: task
3
+ custom: https://taskfile.dev/donate/
@@ -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,5 @@
1
+ > Thanks for your pull request, we really appreciate contributions!
2
+ >
3
+ > Please understand that it may take some time to be reviewed.
4
+ >
5
+ > Also, make sure to follow the [Contribution Guide](https://taskfile.dev/contributing/).
@@ -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