aws-cloudformation / aws-cloudformation-resource-providers-stepfunctions

The CloudFormation Resource Provider Package For AWS Step Functions
https://aws.amazon.com/step-functions/
Apache License 2.0
6 stars 4 forks source link

Add StateMachineAlias and StateMachineVersion #45

Closed hongkuntian closed 9 months ago

hongkuntian commented 10 months ago

Issue #, if available: N/A

Description of changes:

Adding the StateMachineAlias and StateMachineVersion resources to the repo.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

hongkuntian commented 10 months ago

Forgot to add the new resources in .github/workflows/pr-ci.yml

Currently only runs mvn clean verify for Activity and StateMachine:

      - name: Run mvn clean verify for Activity and State Machine resources
        run: |
          cd ./activity
          mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean verify
          cd ..
          cd ./statemachine
          mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean verify

Fixing this shortly