Skip to content

Commit

Permalink
Merge branch 'main' into bm/deer/core-cell
Browse files Browse the repository at this point in the history
  • Loading branch information
indietyp authored Apr 13, 2023
2 parents 61a5937 + 7633fdd commit 09103a4
Show file tree
Hide file tree
Showing 56 changed files with 565 additions and 723 deletions.
3 changes: 2 additions & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ We also have a community [Discord server](https://hash.ai/discord) where you can

This repository is HASH's public monorepo. It contains [several different](README.md) projects, some of which are open-source. Each project has its own [license](LICENSE.md) and contribution policies which may vary slightly.

To ascertain the license and contributor policy for a given project, check out the `LICENSE.md` and `CONTRIBUTOR.md` files in its root.
To ascertain the license and contributor policy for a given project, check out the `LICENSE.md` and `CONTRIBUTING.md` files in its root.

## Common contribution processes

Expand All @@ -21,6 +21,7 @@ These apply across all projects:
- Always include a link to the issue or discussion proposing the change.
- Write tests to accompany your PR, or ask for help/guidance if this is a blocker.
- Make sure that your PR doesn’t break existing tests.
- The repository follows a set of linting rules. Many of them can be applied automatically by running `yarn install` and `yarn fix`.
- Sign our _Contributor License Agreement_ at the CLA Assistant's prompting. (To learn more, read [why we have a CLA](https://hash.ai/legal/cla))
- Once you have receive a pull request review, please bear the following in mind:
- reviewers may make suggestions for _optional_ changes which are not required to get your code merged. It should be obvious which suggestions are optional, and which are required changes. If it is not obvious, ask for clarification.
Expand Down
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

- ...

## 🔍 Has this modified a publishable library?
## 🚀 Has this modified a publishable library?

<!-- Confirm you have taken the necessary action to record a changeset or publish a change, as appropriate -->
<!-- AT LEAST ONE box must be checked. Do not delete this section! see libs/README.md for info on publishing -->
Expand Down
1 change: 1 addition & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"postUpdateOptions": ["yarnDedupeFewer"],
"rangeStrategy": "bump",
"rebaseWhen": "conflicted",
"semanticCommits": "disabled",
"packageRules": [
{
"enabled": true,
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/dispatch-fix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Fix
on: workflow_dispatch
jobs:
yarn:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Warm up repo
uses: ./.github/actions/warm-up-repo

- name: Fix
run: yarn fix

- name: Commit
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m '`yarn fix`'
git push
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ This repository's contents is divided across four primary sections:
- [**`/blocks`**](/blocks) contains our public _Block Protocol_ [blocks](#blocks)
- [**`/infra`**](/infra) houses deployment scripts, utilities and other [infrastructure](#infrastructure) useful in running our apps
- [**`/libs`**](/libs) contains [libraries](#libraries) including npm packages and Rust crates
- [**`/tests`**](/tests) contains end-to-end and integration tests that span across one or more apps, blocks or libs

Key projects within are summarized below.

Expand Down
Loading

0 comments on commit 09103a4

Please sign in to comment.