Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kitsuyui/happy-commit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7
Choose a base ref
...
head repository: kitsuyui/happy-commit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8
Choose a head ref
Loading
Showing with 1,799 additions and 1,518 deletions.
  1. +15 −0 .github/workflows/spellcheck.yml
  2. +4 −0 _typos.toml
  3. +1 −1 action.yml
  4. +164 −128 dist/index.js
  5. +6 −6 dist/interfaces.d.ts
  6. +1 −1 dist/interfaces.d.ts.map
  7. +2 −2 dist/rules.d.ts
  8. +1 −1 dist/rules.d.ts.map
  9. +2 −2 package.json
  10. +1,603 −1,377 yarn.lock
15 changes: 15 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Spellcheck
on: [push]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Check spelling
uses: crate-ci/typos@master
# typos is a Source code spell checker
# https://github.com/crate-ci/typos
4 changes: 4 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# typos is a Source code spell checker
# https://github.com/crate-ci/typos
[files]
extend-exclude = ["dist/**"]
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'happy-commit'
description: 'Celebrate pull-request when it contais a lucky commit'
description: 'Celebrate pull-request when it contains a lucky commit'

branding:
icon: award
Loading