Skip to content

chore(mcp): add server info metadata on client session "root" spans #109910

chore(mcp): add server info metadata on client session "root" spans

chore(mcp): add server info metadata on client session "root" spans #109910

Workflow file for this run

name: pr-name
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
branches-ignore:
- "[0-9]+.[0-9]+"
jobs:
pr_name_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
name: Install Node.js
with:
node-version: 16
- name: Install dependencies
run: |
npm install @commitlint/[email protected] @commitlint/[email protected] @commitlint/[email protected] @actions/core
- name: Lint PR name
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const load = require('@commitlint/load').default;
const lint = require('@commitlint/lint').default;
const CONFIG = {
extends: ['./commitlint.config.js'],
};
const title = context.payload.pull_request.title;
core.info(`Linting: ${title}`);
load(CONFIG)
.then((opts) => {
lint(
title,
opts.rules,
opts.parserPreset ? {parserOpts: opts.parserPreset.parserOpts} : {}
).then((report) => {
report.warnings.forEach((warning) => {
core.warning(warning.message);
});
report.errors.forEach((error) => {
core.error(error.message);
});
if (!report.valid) {
core.setFailed("PR title linting failed");
}
});
});