Some days at work are just business as usual—until they’re not.
Earlier today, as I was wrapping up my day, a customer issue was raised in our Slack channel. The feature in question had been deployed a week ago, but I had zero context about it since another QA colleague had tested it.
Diving into the investigation, we finally uncovered what went wrong. And oh boy, it was a classic case of “Oops, we forgot to deploy that”.
🤦 What Happened?
During the original testing phase, QA and the developer had worked together to validate the feature. However, instead of creating a proper Pull Request (PR) and deploying it through the usual process, the developer had manually run the script in the testing environment. The test passed successfully, and the ticket was moved to “Done”.
The problem? A crucial dependency PR was never created or deployed. Since the dev had tested the change locally in the test environment, it never officially made its way to production. And over time, everyone forgot about it—until today when the customer reported the issue.
After identifying the problem, the dev and I quickly created a PR, deployed the missing change to production, and resolved the issue. But this incident left me thinking:
How can we avoid such pitfalls in the future?
✅ Lessons Learned: How to Prevent This in the Future
1️⃣ Always Ensure There’s a PR for Every Change
Even if a change is small, it must go through the proper PR and deployment pipeline. No local runs should replace the deployment process.
🔹 Best practice: Before moving a ticket to “Done,” confirm that a PR has been merged and deployed.
2️⃣ Document Dependency PRs
In this case, a dependency PR was required but was never created. This led to an incomplete deployment.
🔹 Best practice: If a feature requires dependent changes, explicitly mention it in the ticket or create linked PRs in the version control system.
3️⃣ Have a Strong “Definition of Done”
A weak Definition of Done (DoD) can allow incomplete work to slip through the cracks.
🔹 Best practice: Before marking a task as “Done”:
✔ Ensure all dependent PRs are merged & deployed
✔ Verify end-to-end testing is completed in a real test environment
✔ Confirm deployment through monitoring/logging tools
4️⃣ Improve Communication Between QA and Devs
QA and developers often collaborate closely, but sometimes critical deployment steps get missed.
🔹 Best practice: Before a dev says, “It’s tested and ready”, QA should ask:
❓ “Has this exact code been deployed through our usual pipeline?”
❓ “Are all dependencies included in the deployed version?“
5️⃣ Set Up a Deployment Checklist
A simple pre-release checklist can prevent major mishaps.
🔹 Best practice: Before a deployment, the checklist should include:
✅ PR has been created and reviewed
✅ Tests have passed in a real test environment
✅ Dependency PRs are merged
✅ Feature is deployed through the actual pipeline
🚀 Wrapping Up
This incident was a great reminder that small oversights can lead to big issues. As QA engineers, our job isn’t just testing functionality but ensuring the right process is followed.
For junior QAs: Never hesitate to ask how a feature was deployed! It’s better to double-check now than debug a production issue later.
💡 What about you? Have you ever encountered a similar issue?