Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: cherfia/chromiumly
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dbef2e78b563de78deffcfb99aa04fba8ec820f0
Choose a base ref
..
head repository: cherfia/chromiumly
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3258d255e958e2dc69876032d6a500de3ac9c776
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 .github/workflows/build.yml
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -19,10 +19,10 @@ jobs:
run: yarn add conventional-changelog-conventionalcommits commitlint@latest
- name: Validate commits
if: github.event_name == 'push'
run: npx commitlint --from $(git rev-parse HEADˆ1) --to $(git rev-parse HEAD) --verbose
run: npx commitlint --from $(git rev-parse HEAD^1) --to $(git rev-parse HEAD) --verbose
- name: Validate pull requests
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}ˆ${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}^${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
- run: yarn
- run: yarn lint
- run: yarn build