Skip to content

Commit

Permalink
feat(codepipeline): allow creation of GitHub Pipelines without source…
Browse files Browse the repository at this point in the history
… trigger (aws#2332)

BREAKING CHANGE: the `pollForSourceChanges` property in `GitHubSourceAction` has been renamed to `trigger`, and its type changed from a `boolean` to an enum.
  • Loading branch information
Sander Knape authored and SanderKnape committed May 14, 2019
1 parent dfc428d commit 17e9cf4
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/app-delivery/test/integ.cicd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const source = new cpactions.GitHubSourceAction({
owner: 'awslabs',
repo: 'aws-cdk',
oauthToken: cdk.SecretValue.plainText('DummyToken'),
pollForSourceChanges: true,
trigger: cpactions.GitHubTrigger.Poll,
output: sourceOutput,
});
pipeline.addStage({
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-codepipeline-actions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const sourceAction = new codepipeline_actions.GitHubSourceAction({
oauthToken: token.value,
output: sourceOutput,
branch: 'develop', // default: 'master'
trigger: codepipeline.TriggerType.Poll // default: 'WebHook'
trigger: codepipeline_actions.GitHubTrigger.Poll // default: 'WebHook', 'None' is also possible for no Source trigger
});
pipeline.addStage({
name: 'Source',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ export enum TriggerType {
WebHook,
}

/**
* If and how the GitHub source action should be triggered
*/
export enum GitHubTrigger {
None = 'None',
Poll = 'Poll',
WebHook = 'WebHook',
}

/**
* Construction properties of the {@link GitHubSourceAction GitHub source action}.
*/
Expand Down Expand Up @@ -47,9 +56,13 @@ export interface GitHubSourceActionProps extends codepipeline.CommonActionProps
/**
* How AWS CodePipeline should be triggered
*
* @default false
* With the default value "WebHook", a webhook is created in GitHub that triggers the action
* With "Poll", CodePipeline periodically checks the source for changes
* With "None", the action is not triggered through changes in the source
*
* @default GitHubTrigger.WebHook
*/
readonly trigger?: TriggerType;
readonly trigger?: GitHubTrigger;
}

/**
Expand All @@ -71,15 +84,15 @@ export class GitHubSourceAction extends codepipeline.Action {
Repo: props.repo,
Branch: props.branch || "master",
OAuthToken: props.oauthToken.toString(),
PollForSourceChanges: (props.trigger && props.trigger == TriggerType.Poll) || false,
PollForSourceChanges: props.trigger === GitHubTrigger.Poll,
},
});

this.props = props;
}

protected bind(info: codepipeline.ActionBind): void {
if (!this.props.trigger || (this.props.trigger && this.props.trigger == TriggerType.WebHook)) {
if (!this.props.trigger || this.props.trigger === GitHubTrigger.WebHook) {
new codepipeline.CfnWebhook(info.scope, 'WebhookResource', {
authentication: 'GITHUB_HMAC',
authenticationConfiguration: {
Expand Down
122 changes: 121 additions & 1 deletion packages/@aws-cdk/aws-codepipeline-actions/test/test.pipeline.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { expect, haveResource, haveResourceLike, SynthUtils } from '@aws-cdk/assert';
import { expect, haveResource, haveResourceLike, not, SynthUtils } from '@aws-cdk/assert';
import codebuild = require('@aws-cdk/aws-codebuild');
import codecommit = require('@aws-cdk/aws-codecommit');
import codepipeline = require('@aws-cdk/aws-codepipeline');
Expand Down Expand Up @@ -67,6 +67,124 @@ export = {
test.done();
},

'pipeline with GitHub source with poll trigger'(test: Test) {
const stack = new Stack();

const secret = new CfnParameter(stack, 'GitHubToken', { type: 'String', default: 'my-token' });

const p = new codepipeline.Pipeline(stack, 'P');

p.addStage({
name: 'Source',
actions: [
new cpactions.GitHubSourceAction({
actionName: 'GH',
runOrder: 8,
output: new codepipeline.Artifact('A'),
branch: 'branch',
oauthToken: SecretValue.plainText(secret.stringValue),
owner: 'foo',
repo: 'bar',
trigger: cpactions.GitHubTrigger.Poll
}),
],
});

p.addStage({
name: 'Two',
actions: [
new cpactions.ManualApprovalAction({ actionName: 'Boo' }),
],
});

expect(stack).to(not(haveResourceLike('AWS::CodePipeline::Webhook')));

expect(stack).to(haveResourceLike('AWS::CodePipeline::Pipeline', {
"Stages": [
{
"Actions": [
{
"Configuration": {
"PollForSourceChanges": true
},
"Name": "GH"
}
],
"Name": "Source"
},
{
"Actions": [
{
"Name": "Boo",
}
],
"Name": "Two"
}
]
}));

test.done();
},

'pipeline with GitHub source without triggers'(test: Test) {
const stack = new Stack();

const secret = new CfnParameter(stack, 'GitHubToken', { type: 'String', default: 'my-token' });

const p = new codepipeline.Pipeline(stack, 'P');

p.addStage({
name: 'Source',
actions: [
new cpactions.GitHubSourceAction({
actionName: 'GH',
runOrder: 8,
output: new codepipeline.Artifact('A'),
branch: 'branch',
oauthToken: SecretValue.plainText(secret.stringValue),
owner: 'foo',
repo: 'bar',
trigger: cpactions.GitHubTrigger.None
}),
],
});

p.addStage({
name: 'Two',
actions: [
new cpactions.ManualApprovalAction({ actionName: 'Boo' }),
],
});

expect(stack).to(not(haveResourceLike('AWS::CodePipeline::Webhook')));

expect(stack).to(haveResourceLike('AWS::CodePipeline::Pipeline', {
"Stages": [
{
"Actions": [
{
"Configuration": {
"PollForSourceChanges": false
},
"Name": "GH"
}
],
"Name": "Source"
},
{
"Actions": [
{
"Name": "Boo",
}
],
"Name": "Two"
}
]
}));

test.done();
},

'github action uses ThirdParty owner'(test: Test) {
const stack = new Stack();

Expand Down Expand Up @@ -96,6 +214,8 @@ export = {
],
});

expect(stack).to(haveResourceLike('AWS::CodePipeline::Webhook'));

expect(stack).to(haveResourceLike('AWS::CodePipeline::Pipeline', {
"ArtifactStore": {
"Location": {
Expand Down

0 comments on commit 17e9cf4

Please sign in to comment.