amplify_push_notifications_example #56
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: amplify_push_notifications_example | |
on: | |
push: | |
branches: | |
- main | |
- stable | |
paths: | |
- '.github/workflows/amplify_push_notifications_example.yaml' | |
- '.github/workflows/flutter_vm.yaml' | |
- 'packages/amplify_core/lib/**/*.dart' | |
- 'packages/amplify_core/pubspec.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/notifications/push/amplify_push_notifications/example/**/*.dart' | |
- 'packages/notifications/push/amplify_push_notifications/example/**/*.yaml' | |
- 'packages/notifications/push/amplify_push_notifications/example/lib/**/*' | |
- 'packages/notifications/push/amplify_push_notifications/example/test/**/*' | |
- 'packages/notifications/push/amplify_push_notifications/lib/**/*.dart' | |
- 'packages/notifications/push/amplify_push_notifications/pubspec.yaml' | |
- 'packages/secure_storage/amplify_secure_storage/lib/**/*.dart' | |
- 'packages/secure_storage/amplify_secure_storage/pubspec.yaml' | |
- 'packages/secure_storage/amplify_secure_storage_dart/lib/**/*.dart' | |
- 'packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml' | |
- 'packages/worker_bee/worker_bee/lib/**/*.dart' | |
- 'packages/worker_bee/worker_bee/pubspec.yaml' | |
- 'packages/worker_bee/worker_bee_builder/lib/**/*.dart' | |
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml' | |
pull_request: | |
paths: | |
- '.github/workflows/amplify_push_notifications_example.yaml' | |
- '.github/workflows/flutter_vm.yaml' | |
- 'packages/amplify_core/lib/**/*.dart' | |
- 'packages/amplify_core/pubspec.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/notifications/push/amplify_push_notifications/example/**/*.dart' | |
- 'packages/notifications/push/amplify_push_notifications/example/**/*.yaml' | |
- 'packages/notifications/push/amplify_push_notifications/example/lib/**/*' | |
- 'packages/notifications/push/amplify_push_notifications/example/test/**/*' | |
- 'packages/notifications/push/amplify_push_notifications/lib/**/*.dart' | |
- 'packages/notifications/push/amplify_push_notifications/pubspec.yaml' | |
- 'packages/secure_storage/amplify_secure_storage/lib/**/*.dart' | |
- 'packages/secure_storage/amplify_secure_storage/pubspec.yaml' | |
- 'packages/secure_storage/amplify_secure_storage_dart/lib/**/*.dart' | |
- 'packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml' | |
- 'packages/worker_bee/worker_bee/lib/**/*.dart' | |
- 'packages/worker_bee/worker_bee/pubspec.yaml' | |
- 'packages/worker_bee/worker_bee_builder/lib/**/*.dart' | |
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml' | |
schedule: | |
- cron: "0 6 * * *" # Every day at 06: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/flutter_vm.yaml | |
with: | |
package-name: amplify_push_notifications_example | |
working-directory: packages/notifications/push/amplify_push_notifications/example | |
has-goldens: false |