chore(deps): Bump the xml group in /packages/smithy/smithy with 1 update #1059
Workflow file for this run
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: smithy_codegen | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
pull_request: | ||
paths: | ||
- '.github/workflows/dart_native.yaml' | ||
- '.github/workflows/dart_vm.yaml' | ||
- '.github/workflows/smithy_codegen.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/smithy/lib/**/*.dart' | ||
- 'packages/smithy/smithy/pubspec.yaml' | ||
- 'packages/smithy/smithy_aws/lib/**/*.dart' | ||
- 'packages/smithy/smithy_aws/pubspec.yaml' | ||
- 'packages/smithy/smithy_codegen/**/*.dart' | ||
- 'packages/smithy/smithy_codegen/**/*.yaml' | ||
- 'packages/smithy/smithy_codegen/lib/**/*' | ||
- 'packages/smithy/smithy_codegen/test/**/*' | ||
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: smithy_codegen | ||
working-directory: packages/smithy/smithy_codegen | ||
has-goldens: false | ||
Check failure on line 47 in .github/workflows/smithy_codegen.yaml GitHub Actions / smithy_codegenInvalid workflow file
|
||
native_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_native.yaml | ||
with: | ||
package-name: smithy_codegen | ||
working-directory: packages/smithy/smithy_codegen |