From e807f5d18a9854eb1247779fd8201e4dd9d19af5 Mon Sep 17 00:00:00 2001 From: Daniel Thorn Date: Tue, 21 Jun 2022 12:24:02 -0700 Subject: [PATCH] Submit commits to Glean probe-scraper to validate and publish metrics, per https://mozilla.github.io/glean/book/user/adding-glean-to-your-project/enable-data-ingestion.html#validate-and-publish-metrics > After your product has been enabled, you must submit commits to probe scraper to validate and publish metrics. Metrics will only be published from branches defined in probe scraper's repositories.yaml, or the Git default branch if not explicitly configured. This should happen on every CI run to the specified branches. Nightly jobs will then automatically add published metrics to the Glean Dictionary and other data platform tools. --- .github/workflows/glean-probe-scraper.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/glean-probe-scraper.yml diff --git a/.github/workflows/glean-probe-scraper.yml b/.github/workflows/glean-probe-scraper.yml new file mode 100644 index 000000000..e845bad11 --- /dev/null +++ b/.github/workflows/glean-probe-scraper.yml @@ -0,0 +1,10 @@ +--- +name: Glean probe-scraper +on: + push: + branches: [main] + pull_request: + branches: [main] +jobs: + glean-probe-scraper: + uses: mozilla/probe-scraper/.github/workflows/glean.yaml@main