diff --git a/.github/workflows/schema-updater.yaml b/.github/workflows/schema-updater.yaml index 168edddf..d998609e 100644 --- a/.github/workflows/schema-updater.yaml +++ b/.github/workflows/schema-updater.yaml @@ -1,6 +1,6 @@ on: schedule: - - cron: '*/5 * * * *' + - cron: '0 0 * * *' workflow_dispatch: # Enables on-demand/manual triggering: https://docs.github.com/en/free-pro-team@latest/actions/managing-workflow-runs/manually-running-a-workflow jobs: schema-updater: @@ -9,6 +9,9 @@ jobs: - uses: actions/checkout@v4 - run: | curl https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-resource-schema/master/src/main/resources/schema/provider.definition.schema.v1.json > src/rpdk/core/data/schema/provider.definition.schema.v1.json + curl https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-resource-schema/master/src/main/resources/schema/provider.configuration.definition.schema.v1.json > src/rpdk/core/data/schema/provider.configuration.definition.schema.v1.json + curl https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-resource-schema/master/src/main/resources/schema/base.definition.schema.v1.json > src/rpdk/core/data/schema/base.definition.schema.v1.json + curl https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-resource-schema/master/src/main/resources/schema/schema > src/rpdk/core/data/schema/meta-schema.json - uses: peter-evans/create-pull-request@v5 with: commit-message: |