diff --git a/.github/workflows/codeberg-mirror.yml b/.github/workflows/codeberg-mirror.yml new file mode 100644 index 0000000..d3f0c38 --- /dev/null +++ b/.github/workflows/codeberg-mirror.yml @@ -0,0 +1,18 @@ +name: Mirror Sync +on: + push: + branches: ["master"] + workflow_dispatch: + schedule: + - cron: "0 */6 * * *" +jobs: + codeberg: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: pixta-dev/repository-mirroring-action@v1 + with: + target_repo_url: "git@codeberg.org:devthefuture/modjo.git" + ssh_private_key: ${{ secrets.CODEBERG_SSH_PRIVATE_KEY }} \ No newline at end of file diff --git a/README.md b/README.md index fa70ef4..8c462fb 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,16 @@ CQRS kesako ? un peu de lecture: - no transpiller (no typescript/babel etc...) - no bullshits - [@vercel/ncc](https://github.com/vercel/ncc) compilable (faster bootup time and less I/O overhead) + + +## Contributing: + +We welcome contributions! If you encounter a bug or have a feature suggestion, please open an issue. To contribute code, simply fork the repository and submit a pull request. + +This repository is mirrored on both GitHub and Codeberg. Contributions can be made on either platform, as the repositories are synchronized bidirectionally. +- Codeberg: [https://codeberg.org/devthefuture/modjo](https://codeberg.org/devthefuture/modjo) +- GitHub: [https://github.com/devthefuture-org/modjo](https://github.com/devthefuture-org/modjo) + +For more information: +- [Why mirror to Codeberg?](https://codeberg.org/Recommendations/Mirror_to_Codeberg#why-should-we-mirror-to-codeberg) +- [GitHub to Codeberg mirroring tutorial](https://codeberg.org/Recommendations/Mirror_to_Codeberg#github-codeberg-mirroring-tutorial)