[AEM Cloud] The policies I've defined under wcm/policies are not applying.
Hello,
I am currently struggling with defining policies on my code using the .content.xml under wcm/policies. For example I have a Section Container component that has a responsivegrid inside its HTML. My idea is to only allow the components group "Content" in there, so in my policies I added the following snippet:
<section-container jcr:primaryType="nt:unstructured">
<policy_1595870812979
jcr:primaryType="nt:unstructured"
jcr:title="Section Container"
sling:resourceType="wcm/core/components/policy/policy"
components="group:KG AEM Commons - Content">
<jcr:content jcr:primaryType="nt:unstructured"/>
</policy_1595870812979>
</section-container>
But when I do a clean install with the command mvn clean install -PautoInstallPackage and I check my policies the group was not added correctly, meaning I have to do it manually, as shown below. This is particular annoying because after each install my policies reset so I have to do this again.

Could it be the fault of my filters file? For the content module I define my filters as:
<?xml version="1.0" encoding="UTF-8"?>
<workspaceFilter version="1.0">
<filter root="/conf/kg-commons" mode="update"/>
<filter root="/content/kg-commons" mode="merge"/>
<filter root="/content/dam/kg-commons" mode="merge"/>
<filter root="/content/cq:tags/kg-commons" mode="merge"/>
<filter root="/content/campaigns" mode="merge"/>
<filter root="/content/experience-fragments/kg-commons" mode="merge"/>
<filter root="/conf/kg-commons/settings/wcm/segments" mode="merge"/>
<filter root="/conf/kg-commons/settings/wcm/policies/.content.xml" mode="merge"/>
</workspaceFilter>