Ignore specific files in terraform cloud plans

Hello, I’d like to know if is possible to ignore changes to certain files in terraform cloud automatic runs in a workspace.

My use case is as follows:

I have a monorepo with different workspaces and in each workspace I would like to keep a README.md. Every time I modify this README.md the plan corresponding to the workspace where the file is located is automatically triggered (in a PR and after merge), but I would like this not to happen.

I have tried using .terraformignore file, but this only works for CLI-driven runs with remote execution mode during Upload (as mentioned in the documentation).

Is there a way to achieve this?

Thank you