fix(aft): Don't use build numbers (+
) for 0-based patch versions (#…
#1004
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated with aft. To update, run: `aft generate workflows` | ||
name: rest_xml_with_namespace_v2 | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
pull_request: | ||
paths: | ||
- '.github/composite_actions/setup_firefox/action.yaml' | ||
- '.github/workflows/dart_dart2js.yaml' | ||
- '.github/workflows/dart_ddc.yaml' | ||
- '.github/workflows/dart_native.yaml' | ||
- '.github/workflows/dart_vm.yaml' | ||
- '.github/workflows/rest_xml_with_namespace_v2.yaml' | ||
- 'packages/amplify_lints/lib/**/*.yaml' | ||
- 'packages/amplify_lints/pubspec.yaml' | ||
- 'packages/aws_common/lib/**/*.dart' | ||
- 'packages/aws_common/pubspec.yaml' | ||
- 'packages/aws_signature_v4/lib/**/*.dart' | ||
- 'packages/aws_signature_v4/pubspec.yaml' | ||
- 'packages/smithy/goldens/lib2/restXmlWithNamespace/**/*.dart' | ||
- 'packages/smithy/goldens/lib2/restXmlWithNamespace/**/*.yaml' | ||
- 'packages/smithy/goldens/lib2/restXmlWithNamespace/lib/**/*' | ||
- 'packages/smithy/goldens/lib2/restXmlWithNamespace/test/**/*' | ||
- 'packages/smithy/smithy/lib/**/*.dart' | ||
- 'packages/smithy/smithy/pubspec.yaml' | ||
- 'packages/smithy/smithy_aws/lib/**/*.dart' | ||
- 'packages/smithy/smithy_aws/pubspec.yaml' | ||
schedule: | ||
- cron: "0 0 * * 0" # Every Sunday at 00:00 | ||
defaults: | ||
run: | ||
shell: bash | ||
permissions: read-all | ||
# Cancels in-progress job when there is another push to same ref. | ||
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
uses: ./.github/workflows/dart_vm.yaml | ||
with: | ||
package-name: rest_xml_with_namespace_v2 | ||
working-directory: packages/smithy/goldens/lib2/restXmlWithNamespace | ||
has-goldens: false | ||
Check failure on line 50 in .github/workflows/rest_xml_with_namespace_v2.yaml GitHub Actions / rest_xml_with_namespace_v2Invalid workflow file
|
||
native_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_native.yaml | ||
with: | ||
package-name: rest_xml_with_namespace_v2 | ||
working-directory: packages/smithy/goldens/lib2/restXmlWithNamespace | ||
ddc_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_ddc.yaml | ||
with: | ||
package-name: rest_xml_with_namespace_v2 | ||
working-directory: packages/smithy/goldens/lib2/restXmlWithNamespace | ||
dart2js_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_dart2js.yaml | ||
with: | ||
package-name: rest_xml_with_namespace_v2 | ||
working-directory: packages/smithy/goldens/lib2/restXmlWithNamespace |