generated from actions/typescript-action
-
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.
Merge pull request #66 from KineticCafe/update-release
Dependency and governance upgrades
- Loading branch information
Showing
22 changed files
with
658 additions
and
2,548 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
name: DCO Check | ||
name: Check DCO | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
local: | ||
name: Check DCO | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -14,8 +15,3 @@ jobs: | |
exempt-authors: | | ||
@kineticcommerce.com | ||
@kineticcafe.com | ||
# remote: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: KineticCafe/[email protected] |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Contributing | ||
|
||
We value contributions to @KineticCafe/actions-dco—bug reports, feature | ||
requests, and code contributions. | ||
|
||
Before contributing patches, please read the [Licence.md](./Licence.md). | ||
|
||
@KineticCafe/actions-dco is governed under the Kinetic Commerce Open Source | ||
[Code of Conduct][]. | ||
|
||
## Code Guidelines | ||
|
||
Our usual code contribution guidelines apply: | ||
|
||
- Code changes _will not_ be accepted without tests. The test suite is written | ||
with [vitest][]. | ||
- Match our coding style. We use Biome to assist with this. | ||
- Use a thoughtfully-named topic branch that contains your change. Rebase your | ||
commits into logical chunks as necessary. | ||
- Use [quality commit messages][]. | ||
- The version number must not be changed except as part of the release process. | ||
- Submit a pull request with your changes. | ||
- New or changed behaviours require new or updated documentation. | ||
|
||
A pull request will be accepted only if all code quality checks performed in | ||
GitHub Actions pass. | ||
|
||
@KineticCafe/actions-dco is compiled into a single file with `@vercel/ncc` for | ||
release. One of the status checks is that there are no changes during the | ||
packaging process. Ensure that you run `pnpm all` and commit any files in | ||
`dist/` once you are satisfied with your changes. | ||
|
||
[code of conduct]: https://github.com/KineticCafe/code-of-conduct | ||
[quality commit messages]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html | ||
[vitest]: https://vitest.dev/ |
Oops, something went wrong.