Skip to content

Commit

Permalink
build: Update build files (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
despairblue authored Feb 5, 2024
1 parent 43694fc commit 5912a17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,21 @@ jobs:
## Release

```sh
# 1. update build
# 1. update build - THIS NEEDS TO HAPPEN IN THE PR
npm run build
git add dist
git commit -m "Update built action"
# 2. create new tag
# 2. Merge PR
# 3. create new tag
git tag v1.2.0
git push origin v1.2.0
# 3. create release with new tag
# https://github.com/ivov/validate-n8n-pull-request-title/releases/new
# 4. create release with new tag
# https://github.com/n8n-io/validate-n8n-pull-request-title/releases/new
# 4. move forward major to latest
# 5. move forward major to latest
git tag -fa v1 -m "Move forward v1 tag"
git push origin v1 --force
```
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29082,7 +29082,7 @@ const ERRORS = {
"PR title does not match PR title convention: type: subject or type(scope): subject",
`For \`type\`, use \`type:\` or \`type(scope):\`, where \`type\` is one of ${displayTypes}`,
`If present, \`scope\` must be one of ${displayScopes} or \`<displayName> Node\``,
"For the subject, mind the whitespace, start with lowercase and omit final period",
"For the subject, mind the whitespace, start with uppercase and omit final period",
].join(". "),
TICKET_NUMBER_PRESENT: "PR title must not contain a ticket number",
TYPE_NOT_FOUND: `Failed to find \`type\` in PR title. Expected one of ${displayTypes}`,
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit 5912a17

Please sign in to comment.