aws-codebuild-run-build icon indicating copy to clipboard operation
aws-codebuild-run-build copied to clipboard

Run an AWS CodeBuild project as a step in a GitHub Actions workflow job.

Results 44 aws-codebuild-run-build issues
Sort by recently updated
recently updated
newest added

## Context I am currently working on developing workflows for stack deployment through CodeBuild. This includes a need to terminate previous builds before initiating a new one. To implement this,...

The action output `aws-build-id` is only set if the build [completes](https://github.com/aws-actions/aws-codebuild-run-build/blob/main/index.js#L19). This should probably be set as soon as possible so that it can be used in subsequent actions. We...

when triggering a codebuild project that is normally triggered from codepipeline this action sets the `sourceTypeOverride` and `sourceLocationOverride `. this is great.. however: codebuild projects configured for codepipeline usually have...

We are interested in leveraging this Github action to trigger CB projects when a PR is created in our repo, however we are not comfortable with the idea that the...

In order to save on codebuild resources+cost, I want to use the functionality where we can say ``` close-running-builds: REF_FOR_TAG ``` to be able to close previous running builds for...

This commit introduces two new optional parameters: sourceTypeOverride: Allows overriding the source input type defined in the build project for the current build. Valid values include NO_SOURCE, CODECOMMIT, CODEPIPELINE, GITHUB,...

## Proposal: Add support for `sourceTypeOverride` and `sourceLocationOverride` To enhance the usability of this Action and enable its integration with various source providers, such as GitHub Enterprise, we propose adding...

AWS Codebuild supports Environment Variable supports `PLAINTEXT | PARAMETER_STORE | SECRETS_MANAGER` as mentioned https://docs.aws.amazon.com/codebuild/latest/APIReference/API_EnvironmentVariable.html. The github actions only supports PLAINTEXT. Support for PARAMETER_STORE | SECRETS_MANAGER should be added.

The README doc describe running locally using `npx`. https://github.com/aws-actions/aws-codebuild-run-build/blob/main/README.md#running-locally The command will fail as the package is not published to the NPM Package Registry, npmjs.org. Error: ```shell $ npx @aws-actions/codebuild-run-build...