Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update integration-deployment.yml #142

Merged
merged 2 commits into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions .github/workflows/integration-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
with:
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ dist
coverage/
.j1-integration
.j1-integration-cache
.gitleaks.yml
.gitleaks.yml
CHANGELOG.md
10 changes: 0 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]

## [2.11.1] - 2023-05-09

### Added
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
],
"onlyPublishWithReleaseLabel": true,
"shipit": {
"noChangelog": true,
"prerelease": false
}
}
Expand Down
Loading