Skip to content

Commit 8130aa2

Browse files
committed
ci: cleanup 1.0-dev triggers and remove branch filters
1. Cleanup 1.0-dev filters as the branch won't be used going forward. 2. Remove any branch filters for workflows as a safety net if something got skipped on PR by accident.
1 parent 4eb6432 commit 8130aa2

3 files changed

Lines changed: 30 additions & 29 deletions

File tree

.github/workflows/itk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ITK
22

33
on:
44
push:
5-
branches: [ main, 1.0-dev ]
5+
branches: [ main ]
66
pull_request:
77
paths:
88
- "src/**"

.github/workflows/minimal-install.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
name: Minimal Install Smoke Test
33
on:
44
push:
5-
branches: [main, 1.0-dev]
5+
branches: [ main ]
66
pull_request:
77
paths-ignore:
8-
- '**.md'
9-
- 'LICENSE'
10-
- 'docs/**'
11-
- '.github/CODEOWNERS'
12-
- '.github/ISSUE_TEMPLATE/**'
13-
- '.github/PULL_REQUEST_TEMPLATE.md'
14-
- '.github/dependabot.yml'
15-
- '.gitignore'
16-
- '.git-blame-ignore-revs'
17-
- '.gemini/**'
8+
- "**.md"
9+
- "LICENSE"
10+
- "docs/**"
11+
- ".github/CODEOWNERS"
12+
- ".github/ISSUE_TEMPLATE/**"
13+
- ".github/PULL_REQUEST_TEMPLATE.md"
14+
- ".github/dependabot.yml"
15+
- ".gitignore"
16+
- ".git-blame-ignore-revs"
17+
- ".gemini/**"
1818
permissions:
1919
contents: read
2020

@@ -25,7 +25,7 @@ jobs:
2525
if: github.repository == 'a2aproject/a2a-python'
2626
strategy:
2727
matrix:
28-
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
28+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
2929
steps:
3030
- name: Checkout code
3131
uses: actions/checkout@v6

.github/workflows/unit-tests.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
name: Run Unit Tests
33
on:
44
push:
5-
branches: [main, 1.0-dev]
5+
branches: [ main ]
66
pull_request:
77
paths-ignore:
8-
- '**.md'
9-
- 'LICENSE'
10-
- 'docs/**'
11-
- '.github/CODEOWNERS'
12-
- '.github/ISSUE_TEMPLATE/**'
13-
- '.github/PULL_REQUEST_TEMPLATE.md'
14-
- '.github/dependabot.yml'
15-
- '.gitignore'
16-
- '.git-blame-ignore-revs'
17-
- '.gemini/**'
8+
- "**.md"
9+
- "LICENSE"
10+
- "docs/**"
11+
- ".github/CODEOWNERS"
12+
- ".github/ISSUE_TEMPLATE/**"
13+
- ".github/PULL_REQUEST_TEMPLATE.md"
14+
- ".github/dependabot.yml"
15+
- ".gitignore"
16+
- ".git-blame-ignore-revs"
17+
- ".gemini/**"
1818
permissions:
1919
contents: read
2020

@@ -34,7 +34,8 @@ jobs:
3434
ports:
3535
- 5432:5432
3636
options: >-
37-
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
37+
--health-cmd pg_isready --health-interval 10s --health-timeout 5s
38+
--health-retries 5
3839
mysql:
3940
image: mysql:8.0
4041
env:
@@ -45,11 +46,12 @@ jobs:
4546
ports:
4647
- 3306:3306
4748
options: >-
48-
--health-cmd="mysqladmin ping -h localhost -u root -proot" --health-interval=10s --health-timeout=5s --health-retries=5
49+
--health-cmd="mysqladmin ping -h localhost -u root -proot"
50+
--health-interval=10s --health-timeout=5s --health-retries=5
4951
5052
strategy:
5153
matrix:
52-
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
54+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
5355
steps:
5456
- name: Checkout code
5557
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -66,15 +68,14 @@ jobs:
6668
run: |
6769
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
6870
69-
7071
# Coverage comparison for PRs (only on Python 3.14 to avoid duplicate work)
7172
- name: Checkout Base Branch
7273
if: github.event_name == 'pull_request' && matrix.python-version == '3.14'
7374
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
7475
with:
7576
ref: ${{ github.event.pull_request.base.ref || 'main' }}
7677
clean: true
77-
78+
7879
- name: Install dependencies
7980
run: uv sync --locked
8081

0 commit comments

Comments
 (0)