I'm trying to use the GitHub workflows with the secrets. My setup is:
- Free plan
- Private org
- Private repo
- Secret in the org scope
The problem is that the secret evaluates into an empty string when I use it like this:
echo ${{ secrets.CI_TOKEN }}
What's interesting is that it seems like the workflow code itself is perfectly legit because it starts evaluating the secret into *** when I override it in the repo scope.
Then I've noticed a possible cause of that problem. The org secrets UI is kind of contradictory. First it says that I can not use secrets for private repos on a free plan but then I can choose the third option and choose that private repos manually.
So I wonder whether the free plan actually supports secrets in private repos of private orgs when you select repos manually or not?




