We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2abb69d commit b60cf33Copy full SHA for b60cf33
.github/workflows/build-dev.yml
@@ -12,6 +12,9 @@ on:
12
submodule_path_regex:
13
type: string
14
required: true
15
+ skip_ref_cache_check:
16
+ type: boolean
17
+ default: false
18
19
jobs:
20
build-and-test:
@@ -57,6 +60,7 @@ jobs:
57
60
name: REFCACHE updates?
58
61
needs: build-and-test
59
62
runs-on: ubuntu-latest
63
+ if: ${{ !inputs.skip_ref_cache_check }}
64
steps:
65
- uses: actions/checkout@v4
66
- uses: actions/download-artifact@v4
.github/workflows/build-semconv-daily.yml
@@ -11,6 +11,7 @@ jobs:
11
uses: ./.github/workflows/build-dev.yml
with:
submodule_path_regex: semantic-conventions
+ skip_ref_cache_check: true
workflow-notification:
needs:
0 commit comments