-
Notifications
You must be signed in to change notification settings - Fork 249
47 lines (44 loc) · 1.37 KB
/
amplify_lints.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Generated with aft. To update, run: `aft generate workflows`
name: amplify_lints
on:
push:
branches:
- main
- stable
paths:
- '.github/workflows/amplify_lints.yaml'
- '.github/workflows/dart_vm.yaml'
- 'packages/amplify_lints/**/*.dart'
- 'packages/amplify_lints/**/*.yaml'
- 'packages/amplify_lints/lib/**/*'
- 'packages/amplify_lints/test/**/*'
pull_request:
paths:
- '.github/workflows/amplify_lints.yaml'
- '.github/workflows/dart_vm.yaml'
- 'packages/amplify_lints/**/*.dart'
- 'packages/amplify_lints/**/*.yaml'
- 'packages/amplify_lints/lib/**/*'
- 'packages/amplify_lints/test/**/*'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
contents: read
# 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
secrets: inherit
with:
package-name: amplify_lints
working-directory: packages/amplify_lints