-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
41 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "@commitlint/config-conventional" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
name: merge | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited] | ||
pull_request_target: | ||
types: [opened, reopened, edited, synchronize] | ||
|
||
jobs: | ||
# Check if the PR has a title that matches the conventional commit format | ||
title: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
cache: npm | ||
cache-dependency-path: package-lock.json | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install commitlint and config-conventional | ||
run: npm install @commitlint/cli @commitlint/config-conventional | ||
- run: echo "${{ github.event.pull_request.title }}" | npx commitlint |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,17 +3,19 @@ const info = { | |
name: "Dy0gu", | ||
description: "Just an individual, writing some code on the internet.", | ||
links: [ | ||
{ name: "Email", href: "mailto:[email protected]" }, | ||
{ name: "GitHub", href: "https://www.github.com/dy0gu" }, | ||
{ name: "Stack", href: "https://stackoverflow.com/users/22441488" }, | ||
{ | ||
name: "Stack Overflow", | ||
href: "https://stackoverflow.com/users/22441488", | ||
}, | ||
], | ||
}; | ||
|
||
// Link tags for the <head> of the root html document | ||
const resources = [ | ||
const rels = [ | ||
{ rel: "icon", href: "/favicon.svg", type: "image/svg+xml" }, | ||
{ rel: "sitemap", href: "/sitemap.xml" }, | ||
{ rel: "manifest", href: "/manifest.webmanifest" }, | ||
]; | ||
|
||
export { info, resources }; | ||
export { info, rels }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters