Is it possible to link/associate a power automate workflow with a Site Content Type? So that the workflow gets attached to any list/library where the particular content type is added.
Simple answer is no. If you wanted the flow to only trigger on Word documents, you could add a trigger condition to the flow. I have not tested this, but I think a trigger condition of @contains(triggerBody()?['{FilenameWithExtension}'], '.docx') may work. If you wanted to include .doc files as well, you modify the trigger condition appropriately. For example: @or(contains(triggerBody()?['{FilenameWithExtension}'], '.docx'), contains(triggerBody()?['{FilenameWithExtension}'], '.doc')).
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.