In Github Actions keep track for only changes done in last commit
I have a GitHub Actions workflow that detects changes in folders when I create a pull request and rebuilds any modified folders. However, if a PR modifies 100 folders, all of those folders get rebuilt with every new commit, even if the latest commit only affects one folder.
Can we define inputs globally across different triggers in Github workflows?
Do GitHub Actions support a way to define inputs globally across different triggers. Or should each trigger must define its own set of inputs?