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

Add GitHub Action test for data analytics telemetry monitoring #3905

Closed
wants to merge 25 commits into from
Closed
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
36 changes: 36 additions & 0 deletions .github/workflows/telemetry-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Analytics Telemetry Check

on:
pull_request:
branches:
- main

jobs:
check-for-deprecated-v1-telemetry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35

- name: Check for deprecated telemetry calls
shell: bash
run: |
echo "Checking for deprecated telemetry calls"
echo "logEvent('this should get flagged')"
echo "ChangedFiles: ${{steps.changed-files.outputs.files}}"

if grep -rEn 'logEvent|logEvents|eventLogger\.log' "${{ steps.changed-files.outputs.files }}"; then
echo "Found log events in the following files:"
grep -rEn 'logEvent|logEvents|eventLogger\.log' "${{ steps.changed-files.outputs.files }}" | while read -r line ; do
file=$(echo "$line" | cut -d':' -f1)
match=$(echo "$line" | cut -d':' -f2-)
echo "File: $file, Match: $match"
done
exit 1
else
echo "No log events found in modified files."
exit 0
fi
Loading