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
3 changes: 3 additions & 0 deletions .github/workflows/boost_log.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
- 'instrumentation/boost_log/**'
- '.github/workflows/boost_log.yml'

permissions:
contents: read

jobs:
cmake_linux:
name: CMake Linux
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/fluentd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ on:
pull_request:
branches: [main]
paths:
- "exporters/fluentd/**"
- ".github/workflows/fluentd.yml"

- "exporters/fluentd/**"
- ".github/workflows/fluentd.yml"

permissions:
contents: read

jobs:
cmake_linux:
name: CMake Linux
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/geneva_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ on:
pull_request:
branches: [main]
paths:
- "exporters/geneva/**"
- ".github/workflows/geneva_metrics.yml"
- "exporters/geneva/**"
- ".github/workflows/geneva_metrics.yml"
permissions:
contents: read
jobs:
cmake_linux:
name: CMake on Linux
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/geneva_trace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
paths:
- "exporters/geneva-trace/**"
- ".github/workflows/geneva_trace.yml"

permissions:
contents: read

jobs:
geneva-trace-nuget-generation:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/glog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
- 'instrumentation/glog/**'
- '.github/workflows/glog.yml'

permissions:
contents: read

jobs:
cmake_linux:
name: CMake Linux
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/httpd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- 'instrumentation/httpd/**'
- '.github/workflows/httpd.yml'

permissions:
contents: read

jobs:
build:
name: Build module
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/log4cxx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
- 'instrumentation/log4cxx/**'
- '.github/workflows/log4cxx.yml'

permissions:
contents: read

jobs:
cmake_linux:
name: CMake Linux
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ on:
paths:
- 'instrumentation/nginx/**'
- '.github/workflows/nginx.yml'
permissions:
contents: read
jobs:
create-release:
if: startsWith(github.ref, 'refs/tags/nginx')
permissions:
contents: write # required for creating releases
runs-on: ubuntu-latest
steps:
- name: Release
Expand All @@ -25,6 +29,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/nginx')
runs-on: ubuntu-latest
needs: [nginx-build-test, create-release]
permissions:
contents: write # required for uploading release artifacts
steps:
- name: Create directory
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/prometheus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- "exporters/prometheus/**"
- ".github/workflows/prometheus.yml"

permissions:
contents: read

jobs:
prometheus_bazel_linux:
name: Bazel on Linux
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/spdlog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
- 'instrumentation/spdlog/**'
- '.github/workflows/spdlog.yml'

permissions:
contents: read

jobs:
cmake_linux:
name: CMake Linux
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/user_events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ on:
pull_request:
branches: [main]
paths:
- 'exporters/user_events/**'
- '.github/workflows/user_events.yml'

- 'exporters/user_events/**'
- '.github/workflows/user_events.yml'

permissions:
contents: read

jobs:
cmake_linux:
name: CMake Linux
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/webserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- 'instrumentation/otel-webserver-module/**'
- '.github/workflows/webserver.yml'

permissions:
contents: read

jobs:
webserver-build-test-ubuntu:
name: webserver-ubuntu-build
Expand Down
Loading