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

chore: Update to latest standards #130

Merged
merged 5 commits into from
Dec 20, 2024
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
6 changes: 6 additions & 0 deletions .github/workflows/self-release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@ on:
pull_request:
branches:
- main
- release*
types:
- closed

workflow_dispatch:
inputs:
version:
description: Specific version number to release, eg '3.0.0' or '3.1.0-rc.0'. If not provided, Release Please will determine the version.
required: false

jobs:
release-please:
secrets: inherit
uses: hedia-team/.github/.github/workflows/release-please.yml@latest
with:
test-reports: false
version: ${{ github.event.inputs.version || '' }}
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@
"url": "git+https://github.com/hedia-team/.github.git"
},
"scripts": {
"build": "echo \"Nothing to build.\"",
"package:lint": "npx npm-package-json-lint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
"robots": "npm run prettier:write && npm run package:lint",
"test": "echo \"There are no tests.\""
},
"devDependencies": {
"@hedia/package-lint": "1.2.2",
"@hedia/prettier-config": "1.2.2"
"@hedia/package-lint": "1.2.3",
"@hedia/prettier-config": "1.2.3"
},
"prettier": "@hedia/prettier-config"
}
Loading