Skip to content

Commit

Permalink
use default GH token'
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Jul 24, 2024
1 parent e69a8eb commit b6ec2fa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/upgrade-main.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cdk } from 'projen';
import { cdk, github } from 'projen';

const kplus = 'cdk8s-plus-24';
const project = new cdk.JsiiProject({
// majorVersion: 1,
Expand Down Expand Up @@ -30,5 +31,11 @@ const project = new cdk.JsiiProject({
distName: 'cdk8s-plone',
module: 'cdk8s_plone',
},
githubOptions: {
workflows: true,
projenCredentials: github.GithubCredentials.fromPersonalAccessToken({ secret: '${{ secrets.GITHUB_TOKEN }}' }),
},

});

project.synth();

0 comments on commit b6ec2fa

Please sign in to comment.