Skip to content

Commit

Permalink
Revert "chore(deps): bump applicationinsights from 2.9.6 to 3.4.0 in …
Browse files Browse the repository at this point in the history
…/services/121-service (#6076)"

This reverts commit 76f01bd.
  • Loading branch information
PeterSmallenbroek committed Nov 15, 2024
1 parent 2a103ee commit bb7822a
Show file tree
Hide file tree
Showing 6 changed files with 328 additions and 1,449 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test_pull_request_formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,14 @@ jobs:
core.endGroup()
const prDescription = pr.data.body;
const prLabels = pr.data.labels.map(label => label.name);
if (prLabels.includes('dependencies')) {
core.notice('✅ PR contains a "dependencies" label. Do not check on AB#XXXX.');
} else if (!/AB#\d{5}/.test(prDescription)) {
if (!/AB#\d{5}/.test(prDescription)) {
core.setFailed('Please make sure you have replaced AB#XXXX with a valid DevOps ID in your PR description');
} else {
core.notice('✅ PR description contains a DevOps ID');
}
const validLabels = ['enhancement', 'bugfix', 'dependencies', 'chore', 'ignore-for-release', 'portalicious', 'other'];
const prLabels = pr.data.labels.map(label => label.name);
if (!prLabels.some(label => validLabels.includes(label))) {
core.setFailed('Add one of the following labels to your PR: enhancement, bugfix, chore, ignore-for-release, portalicious, other');
} else {
Expand Down
Loading

0 comments on commit bb7822a

Please sign in to comment.