https://github.com/stuttgart-things/tasks
collection of taskfiles
https://github.com/stuttgart-things/tasks
ci continuous-integration taskfiles tasks
Last synced: about 11 hours ago
JSON representation
collection of taskfiles
- Host: GitHub
- URL: https://github.com/stuttgart-things/tasks
- Owner: stuttgart-things
- License: apache-2.0
- Created: 2025-11-26T14:46:34.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2026-05-01T15:16:10.000Z (3 months ago)
- Last Synced: 2026-05-01T17:18:45.193Z (3 months ago)
- Topics: ci, continuous-integration, taskfiles, tasks
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stuttgart-things/tasks
collection of taskfiles
## Usage
Include remote taskfiles in your `Taskfile.yaml`:
```yaml
version: '3'
includes:
git:
taskfile: https://raw.githubusercontent.com/stuttgart-things/tasks/refs/heads/main/git/git.yaml
ansible:
taskfile: https://raw.githubusercontent.com/stuttgart-things/tasks/refs/heads/main/ansible/execute.yaml
```
Run tasks with the namespace prefix:
```bash
task git:commit
task ansible:lint
```
### Direct Execution
Run remote taskfiles directly without including them:
```bash
export TASK_X_REMOTE_TASKFILES=1
task --taskfile https://raw.githubusercontent.com/stuttgart-things/tasks/refs/heads/main/git/git.yaml
```