Hey everyone! 👋 Still pretty new to Runway (and DevOps in general!), but I just finished setting up a content calendar for our team's blog and tutorials. It was way easier than I expected once I got the template structure figured out.
I'm sharing the template below in case it helps other beginners. It's basically a Markdown file that lives in our project repo. Runway picks it up and turns each item into a task card automatically.
```markdown
# Content Calendar
## Sprint: {{sprint_number}}
### Backlog Items
- [ ] Write Post: "Introduction to Docker for Beginners"
- Owner: @devops_rookie_2025
- Due: 2024-10-30
- Labels: blog, draft
- Notes: Focus on basic `docker run` commands.
- [ ] Update Guide: "Our CI/CD Pipeline Walkthrough"
- Owner: @senior_member
- Due: 2024-11-05
- Labels: tutorial, update
- Notes: Add new screenshots from Runway.
### In Progress
- [ ] Record Video: "Terraform Plan vs Apply"
- Owner: @team_lead
- Due: 2024-10-28
- Labels: video, recording
```
I love how the `@mentions` and `labels` create assignees and tags right in Runway. Makes tracking everything so much simpler for us.
If anyone has suggestions for making this better, I'd really appreciate a beginner-friendly explanation! Still learning how to tie this into our actual deployment workflows.