We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following syntax:
name: Callable Workflow on: workflow_call: secrets: MY_TOKEN: jobs: main: runs-on: ubuntu-latest steps: - run: gh pr comment --body "Test comment" env: GH_TOKEN: ${{ secrets.MY_TOKEN }}
Results in an error:
"description" is missing at "my_token" secret of workflow_call event
However, the description is optional.
The text was updated successfully, but these errors were encountered:
Can you show a link to official document?
Sorry, something went wrong.
I verified with experiments:
Documentation is lacking: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_callsecrets
In this example you can see the description key in the yml but not documented elsewhere.
yml
a8df4a5
Thanks for fixing this @rhysd! 🎉 🙇
No branches or pull requests
The following syntax:
Results in an error:
"description" is missing at "my_token" secret of workflow_call event
However, the description is optional.
The text was updated successfully, but these errors were encountered: