Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .github/workflows/jira-agent-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,6 @@ jobs:
- id: handler
uses: ./.ag-dev-prompts/node_modules/@ag-grid/dev-prompts/.github/actions/jira-ci-success-handler
with:
# DISABLED — sharing agent-run's group supersedes it (AG-18177).
agent_interlock_wait_minutes: 0
head_branch: ${{ github.event.workflow_run.head_branch }}
head_sha: ${{ github.event.workflow_run.head_sha }}
run_url: ${{ github.event.workflow_run.html_url }}
Expand Down
7 changes: 6 additions & 1 deletion scripts/deployments/sanityCheckPackages.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ let errorFound = false;
const allPackages = getPackageInformation();
const packageNames = Object.keys(allPackages);
packageNames
.filter((packageName) => packageName != 'update-algolia-indices' && packageName !== 'ag-behavioural-testing')
.filter(
(packageName) =>
packageName != 'update-algolia-indices' &&
packageName !== 'ag-behavioural-testing' &&
packageName !== 'ag-test-utils'
)
.forEach((packageName) => {
const agPackage = allPackages[packageName];
const {
Expand Down
2 changes: 1 addition & 1 deletion scripts/deployments/versionModules.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const pipe =

const ROOT_PACKAGE_JSON = '../../package.json';
const packageDirectories = require(ROOT_PACKAGE_JSON).workspaces.packages.filter((d) => !d.startsWith('external/'));
const SKIPPED_DEPS = new Set(['ag-grid-testing']);
const SKIPPED_DEPS = new Set(['ag-grid-testing', 'ag-test-utils']);

if (process.argv.length < 4) {
console.log('Usage: node scripts/deployments/versionModules.js [Grid Version] [Charts Version]');
Expand Down
Loading