Events that may trigger a workflow
Helpful expessions, operators and the contexts
Patterns to match tags and branches
Metadata syntax for actions allows to describe actions, it describes the type of an action and its interface
How to write javascript action, use actions/toolkit to write javascript actions. It contains the set of helpful pacckages: core, io, github, exec, tool-cache.
Other GitHub's actions related repositories
-
Actions on GitHub Marketplace
-
actions/cache helps to store artifact expensive to obtain and prepare them on each build (external dependecies, complex generated files)
-
actions/upload-artifact and actions/download-artifact helps to store files between jobs. In case someone need to share any files between steps they may store in on the filesystem, it is persistant within a job.