How to pass list of paths as argument to GitHub Actions cache
I’m refactoring GitHub Actions workflow and I need to have cacheing part in a separate custom action and pass arguments to it. To generate cache I need to pass 3 paths. How can I pass them via inputs of custom action I created?
Conditional Execution of GitHub Actions Jobs Based on Modified Folders
I’m working on a project where I have two specific folders in my repository, folderA and folderB. I want to set up a GitHub Actions workflow that executes different jobs based on which of these folders was modified in a recent push or pull request.