Skip to content

Commit

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

* chore(deps): bump applicationinsights in /services/121-service

Bumps [applicationinsights](/~https://github.com/microsoft/ApplicationInsights-node.js) from 2.9.6 to 3.4.0.
- [Release notes](/~https://github.com/microsoft/ApplicationInsights-node.js/releases)
- [Commits](microsoft/ApplicationInsights-node.js@2.9.6...3.4.0)

---
updated-dependencies:
- dependency-name: applicationinsights
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: process required changes after upgrade

* ci: ignore AB#XXXX check on dependencies PRs

* fix: correct PR yml

* fix: replace SeverityLevel with KnownSeverityLevel

* fix: always console.error on flush catch

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: jannisvisser <jannisvisser@redcross.nl>
  • Loading branch information
dependabot[bot] and jannisvisser authored Nov 13, 2024
1 parent d4bb6f2 commit 76f01bd
Show file tree
Hide file tree
Showing 6 changed files with 1,454 additions and 332 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test_pull_request_formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@ jobs:
core.endGroup()
const prDescription = pr.data.body;
if (!/AB#\d{5}/.test(prDescription)) {
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)) {
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 76f01bd

Please sign in to comment.