From 3fcc0c025307c34212658f54db6af436ac38741d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Gasc=C3=B3n?= Date: Tue, 7 Nov 2023 11:34:35 +0000 Subject: [PATCH] chore: bump to 1.4.0 --- README.md | 4 ++-- dist/index.js | 4 +--- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4292121..520d2d9 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Jenkins status alerts and reporting - uses: UlisesGascon/jenkins-status-alerts-and-reporting@v1.3.0 + uses: UlisesGascon/jenkins-status-alerts-and-reporting@v1.4.0 id: jenkins-status-alerts-and-reporting with: database: experimental/database.json @@ -143,7 +143,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Jenkins status alerts and reporting - uses: UlisesGascon/jenkins-status-alerts-and-reporting@v1.3.0 + uses: UlisesGascon/jenkins-status-alerts-and-reporting@v1.4.0 id: jenkins-status with: # .... diff --git a/dist/index.js b/dist/index.js index 31f51f4..901b92c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -20086,9 +20086,7 @@ async function run () { newDatabaseState[machine].diskUsage >= diskAlertLevel && !issueRelatedToMachine ) { - core.info( - `Generating issue for machine (${machine})...` - ) + core.info(`Generating issue for machine (${machine})...`) await octokit.rest.issues.create({ ...context.repo, title: `${newDatabaseState[machine].name} has low disk space`, diff --git a/package-lock.json b/package-lock.json index 21a9dae..1381da9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "jenkins-status-alerts-and-reporting", - "version": "1.3.0", + "version": "1.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "jenkins-status-alerts-and-reporting", - "version": "1.3.0", + "version": "1.4.0", "dependencies": { "@actions/core": "1.10.0", "@actions/exec": "1.1.1", diff --git a/package.json b/package.json index 9e1ea6c..40b1027 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jenkins-status-alerts-and-reporting", - "version": "1.3.0", + "version": "1.4.0", "description": "Create a Github Action that monitors the status of Jenkins and generates Markdown reports for your inventory. It also alerts you when the nodes are not functioning properly.", "main": "src/index.js", "private": true,