ES-93: use standard AMI agent for build (#7345)

This commit is contained in:
Ronan Browne 2023-04-24 17:56:02 +01:00 committed by GitHub
parent 190acdc87c
commit 5f685be474
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ String COMMON_GRADLE_PARAMS = [
].join(' ')
pipeline {
agent { label 'standard-latest-ami' }
agent { label 'standard' }
/*
* List options in alphabetical order

View File

@ -9,6 +9,6 @@ jobs:
steps:
- uses: morrisoncole/pr-lint-action@v1.6.1
with:
title-regex: '^((CORDA|AG|EG|ENT|INFRA|NAAS)-\d+|NOTICK)(.*)'
title-regex: '^((CORDA|AG|EG|ENT|INFRA|NAAS|ES)-\d+)(.*)'
on-failed-regex-comment: "PR title failed to match regex -> `%regex%`"
repo-token: "${{ secrets.GITHUB_TOKEN }}"