Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
43fa15a
chore(deps): bump form-data from 3.0.3 to 3.0.4 in /utils
dependabot[bot] Jan 12, 2026
85ffebd
chore(deps): bump brace-expansion from 1.1.11 to 1.1.12 in /utils
dependabot[bot] Jan 12, 2026
af66bad
chore(deps): bump tmp and @inquirer/prompts in /utils
dependabot[bot] Jan 12, 2026
ffbed98
Merge pull request #2728 from newrelic/dependabot/npm_and_yarn/utils/…
praveenkatha-nr Jan 20, 2026
fda934e
Merge pull request #2726 from newrelic/dependabot/npm_and_yarn/utils/…
praveenkatha-nr Jan 20, 2026
25d4d1f
Merge pull request #2725 from newrelic/dependabot/npm_and_yarn/utils/…
praveenkatha-nr Jan 20, 2026
60c8ee4
chore(deps): bump qs and express in /utils
dependabot[bot] Jan 20, 2026
9062d39
Merge pull request #2727 from newrelic/dependabot/npm_and_yarn/utils/…
praveenkatha-nr Jan 20, 2026
e689a1b
fix: Fix OTel Kafka dashboard (#2766)
shashank-reddy-nr Jan 23, 2026
60d0f75
fix: use correct env vars for git config in third-party notices job (…
praveenkatha-nr Jan 23, 2026
4c7fa50
fix: Fix otel kafka dashboard (#2770)
shashank-reddy-nr Jan 23, 2026
e666f14
fix: Resolve conflicts
nr-nithya-santhosh Jan 23, 2026
1e3ca19
Merge pull request #2771 from newrelic/fix_conflicts_23_01_2025
praveenkatha-nr Jan 27, 2026
037684c
chore(ci): migrate from yarn to npm and update to Node 22
praveenkatha-nr Jan 27, 2026
10bc738
chore(deps): update dependencies for Node 22 compatibility
praveenkatha-nr Jan 27, 2026
31158a1
chore(ts): update TypeScript configuration for modern tooling
praveenkatha-nr Jan 27, 2026
5ed63d4
fix(ts): resolve TypeScript compilation errors
praveenkatha-nr Jan 27, 2026
5b6df21
chore: remove orphaned check-missing-logos.ts
praveenkatha-nr Jan 27, 2026
ed1f603
fix: incorporate Jest 29 compatibility and API updates from PR #2763
praveenkatha-nr Jan 27, 2026
d767c47
fix(security): address artifact poisoning and missing permissions alerts
praveenkatha-nr Jan 27, 2026
186ed45
fix(es-otel): Update elasticsearch otel docs page url
vagrawal-newrelic Jan 27, 2026
028f786
Merge pull request #2774 from vagrawal-newrelic/es-docs-url-update
praveenkatha-nr Jan 27, 2026
a2debab
feat: update Databricks quickstart to reflect changes in latest versi…
sdewitt-newrelic Jan 27, 2026
3c6a1ab
Merge pull request #2772 from newrelic/chore/migrate-to-npm-and-node22
praveenkatha-nr Jan 27, 2026
c5d180e
fix: change emdash to normal dash
sdewitt-newrelic Jan 27, 2026
5affdc9
Merge pull request #2776 from sdewitt-newrelic/feat/update-databricks…
praveenkatha-nr Jan 28, 2026
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
20 changes: 4 additions & 16 deletions .github/actions/bootstrap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,10 @@ runs:
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 20

- name: Get yarn cache directory path
shell: bash
id: yarn-cache-dir-path
working-directory: utils
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
node-version: 22
cache: 'npm'
cache-dependency-path: utils/package-lock.json

- name: Install dependencies
shell: bash
run: cd utils && yarn install --frozen-lockfile
run: cd utils && npm ci
4 changes: 2 additions & 2 deletions .github/actions/build-validate-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ runs:
- name: Add data source ids to schema
shell: bash
run: |
cd utils && yarn add-datasource-ids
cd utils && npm run add-datasource-ids

- name: Build & Validate Artifact
shell: bash
id: build-validate-artifact
run: |
cd utils && yarn build-validate-quickstart-artifact ${{ inputs.output-artifact && '--output-artifact' || '' }}
cd utils && npm run build-validate-quickstart-artifact -- ${{ inputs.output-artifact && '--output-artifact' || '' }}

- name: Debugging output
shell: bash
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: PR Validation
on:
pull_request:

permissions:
contents: read

jobs:
validate:
name: Validate Artifact
Expand All @@ -29,4 +32,4 @@ jobs:
uses: "./.github/actions/bootstrap"
- name: Validate Quickstart IDs
run: |
cd utils && yarn validate-quickstart-ids
cd utils && npm run validate-quickstart-ids
6 changes: 5 additions & 1 deletion .github/workflows/pr-merged.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Update quickstarts

permissions:
contents: write
pull-requests: read

env:
THIRD_PARTY_GIT_AUTHOR_EMAIL: opensource+bot@newrelic.com
THIRD_PARTY_GIT_AUTHOR_NAME: nr-opensource-bot
Expand Down Expand Up @@ -34,7 +38,7 @@ jobs:

- name: Generate UUIDs for quickstarts
id: generate-uuids
run: cd utils && yarn generate-uuids
run: cd utils && npm run generate-uuids

- name: Commit changes
id: commit-changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Install OSS CLI
run: |
yarn global add @newrelic/newrelic-oss-cli
npm install -g @newrelic/newrelic-oss-cli

- name: Generate Third Party Notices
id: generate-notices
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/repolinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ name: Repolinter Action
# filtered in the "Test Default Branch" step.
on: [push, workflow_dispatch]

permissions:
contents: read
issues: write

jobs:
repolint:
name: Run Repolinter
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
paths:
- "utils/**"

permissions:
contents: read

jobs:
run-unit-tests:
name: Unit tests
Expand All @@ -20,4 +23,4 @@ jobs:
uses: "./.github/actions/bootstrap"

- name: Run tests
run: cd utils && yarn test
run: cd utils && npm test
3 changes: 3 additions & 0 deletions .github/workflows/submit-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- release
types: [closed]

permissions:
contents: read

jobs:
upload-artifact:
runs-on: ubuntu-latest
Expand Down
75 changes: 60 additions & 15 deletions .github/workflows/validate_packs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
types:
- completed

permissions:
contents: read
statuses: write
pull-requests: write

env:
COMMIT_SHA: ${{ github.event.workflow_run.head_commit.id }}

Expand All @@ -14,16 +19,24 @@ jobs:
name: Ensure quickstart ids are unique
runs-on: ubuntu-latest
steps:
- name: Create temp directory
run: mkdir -p ${{ runner.temp }}/artifacts/

- name: Download artifact
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
with:
workflow: validation_gate.yml
run_id: ${{ github.event.workflow_run.id }}
path: ${{ runner.temp }}/artifacts/

- name: Get PR number
- name: Get and validate PR number
id: get_pr_number
run: |
export PR_NUMBER=$(cat artifact/pr_number.txt)
PR_NUMBER=$(cat ${{ runner.temp }}/artifacts/artifact/pr_number.txt)
if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then
echo "Error: Invalid PR number"
exit 1
fi
echo "pr-number=$PR_NUMBER" >> $GITHUB_ENV

- name: Checkout repository
Expand All @@ -36,7 +49,7 @@ jobs:

- name: Check for unique names and ids
id: validation
run: cd utils && yarn check-quickstart-uniqueness
run: cd utils && npm run check-quickstart-uniqueness

- name: Add commit status
uses: "./.github/actions/add-commit-status"
Expand All @@ -48,16 +61,24 @@ jobs:
name: Ensure images are valid
runs-on: ubuntu-latest
steps:
- name: Create temp directory
run: mkdir -p ${{ runner.temp }}/artifacts/

- name: Download artifact
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
with:
workflow: validation_gate.yml
run_id: ${{ github.event.workflow_run.id }}
path: ${{ runner.temp }}/artifacts/

- name: Get PR number
- name: Get and validate PR number
id: get_pr_number
run: |
export PR_NUMBER=$(cat artifact/pr_number.txt)
PR_NUMBER=$(cat ${{ runner.temp }}/artifacts/artifact/pr_number.txt)
if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then
echo "Error: Invalid PR number"
exit 1
fi
echo "pr-number=$PR_NUMBER" >> $GITHUB_ENV

- name: Checkout repository
Expand All @@ -70,7 +91,7 @@ jobs:

- name: Validate Images
id: validation
run: cd utils && yarn validate-images
run: cd utils && npm run validate-images

- name: Add commit status
uses: "./.github/actions/add-commit-status"
Expand All @@ -82,16 +103,24 @@ jobs:
name: Ensure icons exist
runs-on: ubuntu-latest
steps:
- name: Create temp directory
run: mkdir -p ${{ runner.temp }}/artifacts/

- name: Download artifact
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
with:
workflow: validation_gate.yml
run_id: ${{ github.event.workflow_run.id }}
path: ${{ runner.temp }}/artifacts/

- name: Get PR number
- name: Get and validate PR number
id: get_pr_number
run: |
export PR_NUMBER=$(cat artifact/pr_number.txt)
PR_NUMBER=$(cat ${{ runner.temp }}/artifacts/artifact/pr_number.txt)
if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then
echo "Error: Invalid PR number"
exit 1
fi
echo "pr-number=$PR_NUMBER" >> $GITHUB_ENV

- name: Checkout repository
Expand All @@ -104,7 +133,7 @@ jobs:

- name: Validate Icons
id: validation
run: cd utils && yarn validate-icons
run: cd utils && npm run validate-icons

- name: Add commit status
uses: "./.github/actions/add-commit-status"
Expand All @@ -116,16 +145,24 @@ jobs:
name: Ensure quickstart dashboard names are unique
runs-on: ubuntu-latest
steps:
- name: Create temp directory
run: mkdir -p ${{ runner.temp }}/artifacts/

- name: Download artifact
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
with:
workflow: validation_gate.yml
run_id: ${{ github.event.workflow_run.id }}
path: ${{ runner.temp }}/artifacts/

- name: Get PR number
- name: Get and validate PR number
id: get_pr_number
run: |
export PR_NUMBER=$(cat artifact/pr_number.txt)
PR_NUMBER=$(cat ${{ runner.temp }}/artifacts/artifact/pr_number.txt)
if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then
echo "Error: Invalid PR number"
exit 1
fi
echo "pr-number=$PR_NUMBER" >> $GITHUB_ENV

- name: Checkout repository
Expand All @@ -138,7 +175,7 @@ jobs:

- name: Check for unique dashboard names
id: validation
run: cd utils && yarn check-dashboard-name-uniqueness
run: cd utils && npm run check-dashboard-name-uniqueness

- name: Add commit status
uses: "./.github/actions/add-commit-status"
Expand All @@ -149,16 +186,24 @@ jobs:
dashboard-helper:
runs-on: ubuntu-latest
steps:
- name: Create temp directory
run: mkdir -p ${{ runner.temp }}/artifacts/

- name: Download artifact
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
with:
workflow: validation_gate.yml
run_id: ${{ github.event.workflow_run.id }}
path: ${{ runner.temp }}/artifacts/

- name: Get PR number
- name: Get and validate PR number
id: get_pr_number
run: |
export PR_NUMBER=$(cat artifact/pr_number.txt)
PR_NUMBER=$(cat ${{ runner.temp }}/artifacts/artifact/pr_number.txt)
if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then
echo "Error: Invalid PR number"
exit 1
fi
echo "pr-number=$PR_NUMBER" >> $GITHUB_ENV

- name: Checkout repository
Expand All @@ -176,7 +221,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
URL="https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/$PR_NUMBER/files"
cd utils && yarn dashboard-helper $URL
cd utils && npm run dashboard-helper -- $URL
- name: Comment
if: steps.helper.outputs.comment != ''
env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/validation_gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ name: Validation Gate
on:
pull_request:

permissions:
contents: read

jobs:
upload-artifact:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- "**.yml"
- "**.yaml"

permissions:
contents: read

jobs:
lint-yaml-files:
name: Lint YAML Files
Expand Down
Loading
Loading