Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow verify trace-protobuf to continue on error, try 2 #280

Merged
merged 1 commit into from
Nov 1, 2023
Merged
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
12 changes: 7 additions & 5 deletions .github/workflows/verify-proto-files.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 'Verify trace-protobuf'
on: [push]
on:
pull_request:
types: [ opened, synchronize, reopened ]

jobs:
verify-proto-files:
Expand All @@ -24,7 +26,7 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
outcome: ${{ steps.agent_payload_proto.outcome }}
test-id: agent_payload_proto
test-id: Verify trace-protobuf agent_payload_proto
- name: diff tracer_payload.proto
working-directory: trace-protobuf/src/pb
continue-on-error: true
Expand All @@ -39,7 +41,7 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
outcome: ${{ steps.tracer_payload_proto.outcome }}
test-id: tracer_payload_proto
test-id: Verify trace-protobuf tracer_payload_proto
- name: diff stats.proto
working-directory: trace-protobuf/src/pb
continue-on-error: true
Expand All @@ -54,7 +56,7 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
outcome: ${{ steps.stats_proto.outcome }}
test-id: stats_proto
test-id: Verify trace-protobuf stats_proto
- name: diff span.proto
working-directory: trace-protobuf/src/pb
continue-on-error: true
Expand All @@ -69,4 +71,4 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
outcome: ${{ steps.span_proto.outcome }}
test-id: span_proto
test-id: Verify trace-protobuf span_proto
Loading