Skip to content

Commit

Permalink
build: update release please configuration (#1061)
Browse files Browse the repository at this point in the history
* build: update release please configuration

* build: remove standard-version
  • Loading branch information
gidjin authored Jul 12, 2023
1 parent 9b38200 commit 4e49251
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 640 deletions.
22 changes: 21 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
- main
workflow_dispatch:


permissions:
contents: write
pull-requests: write
Expand All @@ -17,4 +18,23 @@ jobs:
- uses: google-github-actions/release-please-action@51ee8ae2605bd5ce1cfdcc5938684908f1cd9f69 # v3
with:
release-type: node
package-name: release-please-action
package-name: ussf-portal-client
include-v-in-tag: false
changelog-types: >
{ "types":
[
{ "type": "build", "hidden": true },
{ "type": "chore", "hidden": true },
{ "type": "ci", "hidden": true },
{ "type": "dev", "hidden": true },
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "refactor", "hidden": true },
{ "type": "revert", "section": "Reverted Changes" },
{ "type": "style", "hidden": true },
{ "type": "test", "hidden": true },
{ "type": "docs", "section": "Documentation" },
{ "type": "security", "section": "Security Improvements" }
]
}
61 changes: 0 additions & 61 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"test": "jest --runInBand --testTimeout=60000",
"test:watch": "jest --watch --runInBand --testTimeout=60000",
"postinstall": "sh ./scripts/copy_uswds_assets.sh",
"release": "standard-version -t ''",
"migrate:create": "migrate create --template-file ./migration-template.js",
"generate": "graphql-codegen --config codegen.yml",
"happo": "happo",
Expand Down Expand Up @@ -153,7 +152,6 @@
"prettier": "2.8.8",
"sass": "1.63.4",
"sass-loader": "13.3.2",
"standard-version": "9.5.0",
"storybook": "7.0.24",
"storybook-addon-apollo-client": "5.0.0",
"storybook-addon-launchdarkly": "1.0.2",
Expand Down Expand Up @@ -181,64 +179,5 @@
"*.{css,scss}": [
"prettier --write"
]
},
"standard-version": {
"skip": {
"tag": true
},
"types": [
{
"type": "build",
"hidden": true
},
{
"type": "chore",
"hidden": true
},
{
"type": "ci",
"hidden": true
},
{
"type": "dev",
"hidden": true
},
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"hidden": true
},
{
"type": "revert",
"section": "Reverted Changes"
},
{
"type": "style",
"hidden": true
},
{
"type": "test",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "security",
"section": "Security Improvements"
}
]
}
}
Loading

0 comments on commit 4e49251

Please sign in to comment.