Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ github:
protected_branches:
master:
required_status_checks:
# Keep workflows providing these checks unfiltered; path skips can leave required checks pending.
# strict means "Require PR to be up-to-date before merging". (enable when branch unstable)
strict: false
# contexts are the names of checks that must pass (now only enable the basic check)
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/check-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,19 @@ name: "3rd-party"
on:
push:
branches:
- /^release-.*$/
- 'release-*'
pull_request:
# Keep source/resources and shared build inputs; skip named documentation files.
paths:
- '**/pom.xml'
- '.mvn/**'
- '.github/configs/**'
- 'install-dist/**'
- '**/*.jar'
- '.github/workflows/check-dependencies.yml'
- '!**/README*'
- '!**/AGENTS.md'
- '!**/CLAUDE.md'

permissions:
contents: read
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/cluster-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ on:
- 'release-*'
- 'test-*'
pull_request:
# Keep source/resources and shared build inputs; skip named documentation files.
paths:
- 'pom.xml'
- '.mvn/**'
- 'style/**'
- '.editorconfig'
- '.github/configs/**'
- 'hugegraph-commons/**'
- 'hugegraph-struct/**'
- 'hugegraph-pd/**'
- 'hugegraph-store/**'
- 'hugegraph-server/**'
- 'hugegraph-cluster-test/**'
- 'install-dist/**'
- '.github/workflows/cluster-test-ci.yml'
- '!**/README*'
- '!**/AGENTS.md'
- '!**/CLAUDE.md'

jobs:
cluster-test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/commons-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
push:
branches:
- master
- /^release-.*$/
- /^test-.*$/
- 'release-*'
- 'test-*'
pull_request:

jobs:
Expand Down
20 changes: 13 additions & 7 deletions .github/workflows/docker-build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,26 @@ on:
- master
- 'release-*'
pull_request:
# Keep source/resources and shared build inputs; skip named documentation files.
paths:
- '.github/workflows/docker-build-ci.yml'
- 'docker/bake.hcl'
- '.dockerignore'
- '.mvn/**'
- 'pom.xml'
- '.mvn/**'
- 'style/**'
- '.editorconfig'
- '.github/configs/**'
- 'hugegraph-commons/**'
- 'hugegraph-cluster-test/**'
- 'hugegraph-struct/**'
- 'hugegraph-pd/**'
- 'hugegraph-store/**'
- 'hugegraph-struct/**'
- 'hugegraph-server/**'
- 'docker/hbase/**'
- 'hugegraph-cluster-test/**'
- 'install-dist/**'
- 'docker/**'
- '.dockerignore'
- '.github/workflows/docker-build-ci.yml'
- '!**/README*'
- '!**/AGENTS.md'
- '!**/CLAUDE.md'

jobs:
docker-bake-check:
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/pd-store-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ on:
- 'release-*'
- 'test-*'
pull_request:
# Keep source/resources and shared build inputs; skip named documentation files.
paths:
- 'pom.xml'
- '.mvn/**'
- 'style/**'
- '.editorconfig'
- '.github/configs/**'
- 'hugegraph-commons/**'
- 'hugegraph-struct/**'
- 'hugegraph-pd/**'
- 'hugegraph-store/**'
- 'hugegraph-server/**'
- '.github/workflows/pd-store-ci.yml'
- 'docker/**'
- 'install-dist/**'
- '!**/README*'
- '!**/AGENTS.md'
- '!**/CLAUDE.md'

# TODO: consider merge to one ci.yml file
jobs:
Expand Down
Loading