Skip to content

Commit b60cf33

Browse files
authored
Skip refcache check for daily semconv build (open-telemetry#6048)
1 parent 2abb69d commit b60cf33

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/build-dev.yml

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
submodule_path_regex:
1313
type: string
1414
required: true
15+
skip_ref_cache_check:
16+
type: boolean
17+
default: false
1518

1619
jobs:
1720
build-and-test:
@@ -57,6 +60,7 @@ jobs:
5760
name: REFCACHE updates?
5861
needs: build-and-test
5962
runs-on: ubuntu-latest
63+
if: ${{ !inputs.skip_ref_cache_check }}
6064
steps:
6165
- uses: actions/checkout@v4
6266
- uses: actions/download-artifact@v4

.github/workflows/build-semconv-daily.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
uses: ./.github/workflows/build-dev.yml
1212
with:
1313
submodule_path_regex: semantic-conventions
14+
skip_ref_cache_check: true
1415

1516
workflow-notification:
1617
needs:

0 commit comments

Comments
 (0)