From 28d4dfb6009ae3b5ef8f9619a0f07f66ec751c66 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 5 Nov 2025 14:32:08 -0500 Subject: [PATCH] rename Signed-off-by: Jason Hall --- README.md | 10 +++++----- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6b39635..3d6b5ae 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: your-org/otel-action@v1 + - uses: imjasonh/gcp-metrics-action@... with: github-token: ${{ github.token }} gcp-service-account-key: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }} @@ -177,7 +177,7 @@ If you have the key file committed (for testing): steps: - uses: actions/checkout@v4 - - uses: your-org/otel-action@v1 + - uses: imjasonh/gcp-metrics-action@... with: github-token: ${{ github.token }} gcp-service-account-key-file: github-actions-metrics-key.json @@ -188,7 +188,7 @@ steps: ```yaml - name: Setup OpenTelemetry Metrics - uses: your-org/otel-action@v1 + uses: imjasonh/gcp-metrics-action@... with: github-token: ${{ github.token }} gcp-service-account-key: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }} @@ -420,7 +420,7 @@ jobs: service_account: ${{ secrets.WIF_SERVICE_ACCOUNT }} # Setup metrics collection (no key file needed) - - uses: your-org/otel-action@v1 + - uses: imjasonh/gcp-metrics-action@... with: github-token: ${{ github.token }} gcp-project-id: ${{ secrets.GCP_PROJECT_ID }} @@ -497,7 +497,7 @@ pre-commit run --all-files ### Project Structure ``` -otel-action/ +/ ├── action.yml # Action definition ├── index.js # Main entry point (source) ├── post.js # Post-action (source) diff --git a/package-lock.json b/package-lock.json index d768676..0631e5e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "otel-action", + "name": "gcp-metrics-action", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "otel-action", + "name": "gcp-metrics-action", "version": "1.0.0", "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index b9e914d..fd74981 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "otel-action", + "name": "gcp-metrics-action", "version": "1.0.0", "description": "GitHub Action that exports workflow metrics and traces with accurate timestamps to Google Cloud Monitoring and Cloud Trace", "main": "index.js",