Skip to content

Commit

Permalink
fix: remove workflow event trigger filters
Browse files Browse the repository at this point in the history
these are an attempt at a "ci usage optimization", to avoid running
CI checks where they would not really matter

however, they have the side effect of not running CI checks all the time
we want them to (like, when we do i18n_sync...) so I want to simplify our
CI config and get i18n_sync running CI automatically
  • Loading branch information
mikehardy committed Dec 7, 2023
1 parent 51fb41e commit 973ab10
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 69 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,7 @@ on:
required: false
type: string
pull_request:
branches:
- '**'
paths:
- '.github/workflows/**'
- 'AnkiDroid/**'
- 'api/**'
- 'lint-rules/**'
- 'annotations/**'
- '**/*.gradle'
- 'gradle/**'
push:
branches:
- main
- i18n_sync
- dependency-updates
- 'release**'
paths:
- '.github/workflows/**'
- 'AnkiDroid/**'
- 'api/**'
- 'lint-rules/**'
- 'annotations/**'
- '**/*.gradle'
- 'gradle/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/tests_emulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,7 @@ on:
required: false
type: string
pull_request:
branches:
- '**'
paths:
- '.github/workflows/**'
- 'AnkiDroid/**'
- 'api/**'
- 'lint-rules/**'
- 'annotations/**'
- '**/*.gradle'
- 'gradle/**'
push:
branches:
- main
- i18n_sync
- dependency-updates
- 'release**'
paths:
- '.github/workflows/**'
- 'AnkiDroid/**'
- 'api/**'
- 'lint-rules/**'
- 'annotations/**'
- '**/*.gradle'
- 'gradle/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/tests_unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,7 @@ on:
required: false
type: string
pull_request:
branches:
- '**'
paths:
- '.github/workflows/**'
- 'AnkiDroid/**'
- 'api/**'
- 'lint-rules/**'
- 'annotations/**'
- '**/*.gradle'
- 'gradle/**'
push:
branches:
- main
- i18n_sync
- dependency-updates
- 'release**'
paths:
- '.github/workflows/**'
- 'AnkiDroid/**'
- 'api/**'
- 'lint-rules/**'
- 'annotations/**'
- '**/*.gradle'
- 'gradle/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit 973ab10

Please sign in to comment.