I want to keep certain GitHub workflows only in my fork.
For instance, I don't want to have .github/workflows/syncFork.yml
file to be present in the upstream repo.
Is this possible in the long run?
I'm afraid ultimately, when I make PR to the original repo, it will contains this file anyway... so the best is to keep main branch between upstream and fork repos exactly the same. Right?
PS. I know I can disable workflow in the original repo:
jobs:
sync:
if
github.repository == 'my-organization/repo'