From 02c1f3b5817bb3a698b213658cd8b7f865672056 Mon Sep 17 00:00:00 2001 From: Nick Thompson <65097490+Nick-NCSU@users.noreply.github.com> Date: Thu, 18 May 2023 14:14:34 -0400 Subject: [PATCH 1/3] Update integration-deployment.yml --- .github/workflows/integration-deployment.yml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/integration-deployment.yml b/.github/workflows/integration-deployment.yml index 2cf401b..ea3ce63 100644 --- a/.github/workflows/integration-deployment.yml +++ b/.github/workflows/integration-deployment.yml @@ -11,20 +11,16 @@ jobs: steps: - name: Get integration name id: get-integration-name - uses: actions/github-script@0.9.0 - with: - script: | - const repositoryName = context.payload.repository.name - const integrationName = repositoryName.replace("graph-", "") - core.setOutput('integrationName', integrationName) + shell: bash + run: | + NAME=${{ github.event.repository.name }} + echo "integrationName=${NAME#graph-}" >> $GITHUB_OUTPUT - name: Get version number id: get-version-number - uses: actions/github-script@0.9.0 - with: - script: | - const tagName = context.payload.release.tag_name - const versionNumber = tagName.replace("v", "") - core.setOutput('versionNumber', versionNumber) + shell: bash + run: | + TAG=${{ github.event.release.tag_name }} + echo "versionNumber=${TAG#v}" >> $GITHUB_OUTPUT - name: Bump integration deployment version uses: JupiterOne/integration-github-actions/create-integration-deployment@v1.2.2 with: From 0d5feebc0556cec0215e404667ae1bf7828bf06e Mon Sep 17 00:00:00 2001 From: Nick Thompson <65097490+Nick-NCSU@users.noreply.github.com> Date: Thu, 18 May 2023 14:42:14 -0400 Subject: [PATCH 2/3] Update CHANGELOG.md --- .prettierignore | 1 + CHANGELOG.md | 10 ---------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.prettierignore b/.prettierignore index 5f4420f..6c48b83 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,4 @@ dist coverage/ .j1-integration .j1-integration-cache +CHANGELOG.md \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 09b8aeb..25d1751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,3 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to -[Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - ## 4.4.4 - 2023-05-15 ## Added From 2805b80930ee862398e0d7410327e310b2a2e0ad Mon Sep 17 00:00:00 2001 From: Nick Thompson <65097490+Nick-NCSU@users.noreply.github.com> Date: Thu, 18 May 2023 14:44:22 -0400 Subject: [PATCH 3/3] Enable Changelog --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index dd2c743..b29a0b8 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,6 @@ ], "onlyPublishWithReleaseLabel": true, "shipit": { - "noChangelog": true, "prerelease": false } }