//pragmatic leaders

Build Project Tracking Automation

Reading time
5 min
Section
Section C : Project Management & Organization
5 min left0%
build project tracking automation0%
5 min left
Organizing your development process with clear tasks and responsibilities is the foundation of shipping any product successfully.
Talvinder Singh, from the Pragmatic Sprint 1-week Accelerated MVP session

Project management is not just about tracking what needs to be done. The actual job is to create a transparent, organized system where every team member knows what to do, when, and why. Without this clarity, projects stall, communication breaks down, and deadlines slip.

When you set up project tracking automation, you reduce friction and manual overhead — freeing your team to focus on delivering value. The rest of this lesson shows you how to harness tools like Trello and GitHub to build that system effectively.

Structuring your development workflow with Trello

Trello is a web-based, Kanban-style list-making application that lets you visually organize your project into stages and tasks. It’s straightforward but powerful, especially when combined with automation rules.

Start by creating a Trello board dedicated to your project. For example, if you are building a hydration tracking app, your board will be the central hub for all development activities.

On this board, create lists that represent the phases of your development lifecycle. Typical lists include:

  • Research
  • Design
  • Prototype
  • Development
  • Testing
  • Launch

Each list contains cards that represent specific tasks or deliverables within that phase.

// scene:

Sprint planning at a startup building a hydration tracking app

You (PM): “Let's break down the launch into clear phases on Trello. We'll create lists for Research, Design, Prototype, Development, Testing, and Launch.”

Rahul (Engineer): “That helps us see the flow and track progress easily.”

Meera (Designer): “We can add tasks like 'Refine app wireframes' under Design, and 'Finalize prototype' under Prototype.”

This visual breakdown makes the work visible and manageable for everyone.

// tension:

Without clear phase breakdowns, tasks pile up without clarity on progress.

Within each list, add cards for individual tasks. Be specific — a card titled “Create final UI designs” is better than “Design.” Good task descriptions provide clarity and reduce back-and-forth.

Assign each card to the responsible team member. Trello allows you to add due dates, checklists, attachments, and comments — all of which help manage the details without losing context.

Automating task flows with Trello rules

Trello has a built-in automation engine to create rules and conditions that trigger actions automatically. These automations save time and reduce errors, especially for repetitive manual work.

For example, you can set a rule:

  • When a card is labeled “Done,” move it automatically to the “Done” list.

This means that when someone marks a task as complete, the card moves without manual dragging — keeping the board up to date effortlessly.

// thread: #product-management — PM sharing automation tips in team Slack
Neha (PM)I've set up a Trello automation: when the 'Done' label is added, the card moves to the Done list.
Karthik (Engineer)Nice! That'll reduce manual updates for us.
Neha (PM)Exactly. We can add more rules — like creating recurring tasks or assigning cards on specific days.

Here’s a quick walkthrough to set this automation:

  1. Go to “Automation” on your Trello board, then “Rules”.
  2. Click “Create Rule”.
  3. Add a trigger: under “Card Changes,” select “when the green ‘Done’ label is added to a card by anyone.”
  4. Add an action: “move the card to the top of the Done list.”
  5. Save the rule.

Now, when you mark a task done, the card moves automatically — that’s the kind of magic that makes your team look professional and organized.

Using GitHub for collaboration and version control

If your project involves custom development, GitHub is essential for managing your codebase collaboratively and safely.

Set up a GitHub repository as the single source of truth for your code. Use branches to isolate work:

  • Main branch for production-ready code
  • Development branch for ongoing integration
  • Feature branches for specific tasks or experiments

Encourage your team to use pull requests for code changes. This enables review, discussion, and quality control before merging.

GitHub’s issue tracker is also crucial. Use it to:

  • Log bugs
  • Track feature requests
  • Manage general tasks

Link issues to pull requests to maintain traceability.

// scene:

Engineering sync at a startup

You (PM): “Let's use GitHub issues to track bugs and feature requests. Each task card on Trello can link to a GitHub issue for code work.”

Vikram (Engineer): “We’ll create branches for each feature and open pull requests for review.”

This workflow ensures code quality and clear progress visibility.

// tension:

Without version control and issue tracking, code changes become chaotic and risky.

Applying this to your hydration tracking app

Imagine your hydration tracking app project:

  • Your Trello board has lists for Research, Prototype, Development, Testing, and Launch.
  • Under “Prototype,” cards include “Incorporate feedback from usability testing” and “Finalize prototype for development.”
  • Under “Development,” cards such as “Implement hydration reminder notifications” and “Integrate with wearable devices” are assigned to engineers.
  • Your GitHub repo stores all code; branches and pull requests manage changes safely.
  • Issues track bugs found during testing and new feature requests.

This structured approach keeps your project on track, with clear ownership and easy progress tracking.

No-code and low-code considerations

Many no-code and low-code platforms have built-in version control and collaboration features. Familiarize yourself with these tools’ capabilities to manage changes and team coordination effectively.

Document in your Trello board how your team will use these features. For example, if your team uses Airtable to manage data or Zapier to automate workflows, include cards describing these integrations and responsibilities.

Field Exercise: Set up your project tracking board (20 min)

  1. Create a Trello account if you don’t have one already.
  2. Make a new board for a project you are currently working on or a hypothetical product idea.
  3. Add lists representing development phases: Research, Design, Prototype, Development, Testing, Launch.
  4. Populate each list with at least two task cards. Make task descriptions specific.
  5. Assign cards to yourself or teammates, adding due dates or checklists where useful.
  6. Create one automation rule: when a card is labeled “Done,” move it to the Done list.
  7. If your project involves code, set up a GitHub repository and create at least one issue and one branch.
  8. Document how you will use Trello and GitHub together to track progress and collaborate.

From the field: Why process automation matters

Test yourself: Prioritizing automation for your team

// learn the judgment

You are PM at a Series A startup in Bangalore building a B2B SaaS product. Your team uses Trello for project tracking but frequently forgets to move cards after completing tasks, causing confusion in sprint reviews.

The call: Which automation would you prioritize adding first to improve team workflow and why?

Your reasoning:

// practice

You are PM at a Series A startup in Bangalore building a B2B SaaS product. Your team uses Trello for project tracking but frequently forgets to move cards after completing tasks, causing confusion in sprint reviews.

Your task: Which automation would you prioritize adding first to improve team workflow and why?

your reasoning:

0 chars (min 80)

Where to go next