Scheduler to build your CircleCI project with AWS Lambda.
Introduce use cases of this Lambda function.
$ git clone [email protected]:tsub/circleci-build-trigger.git # or sls install -u https://github.com/tsub/circleci-build-trigger
$ cd circleci-build-trigger
$ npm install # or yarn install
$ cp serverless.env.yml{.template,} # and Set environment variables in .env
$ export AWS_ACCESS_KEY_ID=<YOUR AWS_ACCESS_KEY_ID>
$ export AWS_SECRET_ACCESS_KEY=<YOUR AWS_SECRET_ACCESS_KEY>
$ export AWS_REGION=<YOUR AWS_REGION>
$ npm run deploy -- -s prod # or yarn run deploy -- -s prod
- Node.js
- yarn (option)
$AWS_ACCESS_KEY_ID
$AWS_SECRET_ACCESS_KEY
$AWS_REGION
or$AWS_DEFAULT_REGION
Access token to access the CircleCI API.
CircleCI: Project Settings -> API Permissions -> Create a token with 'All' scope
GitHub repository to build.
e.g. tsub/circleci-build-trigger
Git branch to build.
e.g. master
Key name to use the CircleCI build_parameters.
e.g. CIRCLECI_BUILD_TRIGGER
Schedule rule to Start build.
Schedule Expression Syntax for Rules - Amazon CloudWatch Events
Run weekly.
rate(1 weeks)
Run at 00:00 am (UTC) every Monday.
cron(0 0 ? * Mon *)