This week at Sturdy #16 – What's new in Sturdy v1.7.0!
Let's Encrypt support, import of Pull Requests, 1-click-shipping for GitHub, CI/CD for draft changes, and integration with any (!) git server.
getsturdy.com/blog/2022-04-1…
Today we’re announcing Access Control Lists (ACLs) to Sturdy!
Control who can see, read, and write what files in your codebase.

🙈 Hide sensitive files
🔐Least privileged principle, on single files!
💥Limit the blast radius
🐣getsturdy.com/docs/access-co…
ACL in a single Tweet:
{
"id": "gustav can access a subset",
"principals": ["gustav@getsturdy.com"],
"action": "write",
"resources": [
"files::pkg/", "files::pkg/**/*",
"files::!pkg/lunch", "files::README.txt"
],
},
}