Do you want to know what’s in that path, or how to use the GitHub Actions there? I can help with either, just tell me which you’re after. In the meantime, here are a few ways to approach it. If you have the repo locally or online: - See what's in the folder - On a clone: ls -la pollinations/pollinations/actions - If you’re in the repo’s root and there’s a workflow that uses the action, you’ll often find an action.yml (or metadata files) inside each action’s folder describing inputs, outputs, and what it runs. - What an action usually contains - action.yml (defines inputs, outputs, and the launcher) - a script or Docker container that runs the task - README or comments explaining usage Using the actions in your workflows - If your workflow file is in the same repository - You can reference a local action with a relative path, for example: - uses: ./pollinations/pollinations/actions/ - Or, if the action is in a subfolder under your repo’s root, a typical form is: - uses: ./actions/ (adjust the path to where the action actually lives) - If the action is published in another repo - You’d reference it like: - uses: pollinations/pollinations/actions/@ - The action.yml inside that folder defines inputs/outputs you’ll configure in the workflow. If you can share a link to the repo or tell me the exact action name(s) inside pollinations/pollinations/actions, I can give you a precise explanation of what each action does and show you a concrete workflow snippet to use it. If you just want a quick starter, tell me what you’re trying to accomplish (e.g., “build a prompt, run an image generation, publish results”) and I’ll draft a workflow you can drop in.