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
Hi,
Thanks for implementing 'aws-actions/aws-codebuild-run-build@v1'. This is very useful.
My project has a requirement: Once the Codebuild job is triggered from Actions, the workflow should not wait for Codebuild job to complete.
Is there a way to force the Actions not to wait? Appreciate your help.
Thanks
The text was updated successfully, but these errors were encountered:
You can call the CodeBuild API directly instead of using this action. See #51 (comment) for more info.
Sorry, something went wrong.
thanks much @madebyherzblut It worked :)
For those who are here for solution, below is the snippet I have used instead of 'aws-actions/aws-codebuild-run-build@v1':
- name: Start CodeBuild run run: aws codebuild start-build --project-name projectname --environment-variables-override "[{\"name\":\"ACTION\",\"value\":\"create\"},{\"name\":\"BRANCH\",\"value\":\"${BITBUCKET_BRANCH}\"}]"
No branches or pull requests
Hi,
Thanks for implementing 'aws-actions/aws-codebuild-run-build@v1'. This is very useful.
My project has a requirement: Once the Codebuild job is triggered from Actions, the workflow should not wait for Codebuild job to complete.
Is there a way to force the Actions not to wait? Appreciate your help.
Thanks
The text was updated successfully, but these errors were encountered: