python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Continue using Develop branch after successful Pull Request?
I have a very basic scenario but I don't understand what is the correct way of handling it.
I have a Master Branch and a Develop Branch
Master does not receive commits directly, I make commits to deve...
B2020
Votes: 0
Answers: 1
AWS CodePipeline and CodeCommit in different regions (or AWS accounts) using CDK
Basically, I want to build the pipeline that exists in one AWS acc, uses CodeCommit from another AWS acc, and deploys something in a third acc. I have this code for deploying my pipeline:
import * as ...
lsichip
Votes: 0
Answers: 0
Adding a stage to CodePipeline throws errors
I am creating a code pipeline as follows -
import * as cdk from "aws-cdk-lib";
import { CodeBuildStep, CodePipeline, CodePipelineSource } from "aws-cdk-lib/pipelines";
...
export ...
Dan
Votes: 0
Answers: 1
When defining a CodePipeline via CDK, how to prevent it running 1st time automatically?
I am defining some CodePipelines in my CDK project, but am running into an annoying issue: Whenever the pipeline is created for the 1st time, it automatically starts to execute. This behavior persists...
Eugene
Votes: 0
Answers: 0