From 3de2ad1c0beb2fbada71720f475fa5dc0131fbf0 Mon Sep 17 00:00:00 2001 From: Karol Konkol Date: Mon, 17 Jun 2024 16:25:30 +0200 Subject: [PATCH 1/3] Migrate from fishjam-dev to fishjam-cloud organization --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07d73a1..7247cc1 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Protos -This repository contains protocol buffers definitions for [fishjam-dev organization](https://github.com/fishjam-dev) repositories. +This repository contains protocol buffers definitions for [fishjam-cloud organization](https://github.com/membrane-cloud) repositories. ## How to add this repo as a git submodule in your own repository Use the command below: -`git submodule add https://github.com/fishjam-dev/protos.git` +`git submodule add https://github.com/membrane-cloud/protos.git` ## Copyright and License From b8695f0fafb4af55ed39efe911e704d8557567ae Mon Sep 17 00:00:00 2001 From: Karol Konkol Date: Wed, 19 Jun 2024 15:31:42 +0200 Subject: [PATCH 2/3] Rename membrane-clound -> fishjam-cloud --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7247cc1..45f93ca 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Protos -This repository contains protocol buffers definitions for [fishjam-cloud organization](https://github.com/membrane-cloud) repositories. +This repository contains protocol buffers definitions for [fishjam-cloud organization](https://github.com/fishjam-cloud) repositories. ## How to add this repo as a git submodule in your own repository Use the command below: -`git submodule add https://github.com/membrane-cloud/protos.git` +`git submodule add https://github.com/fishjam-cloud/protos.git` ## Copyright and License From 7d967ae203f19814821f596069305fbbfb4fe88e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Szuma?= <56085570+Rados13@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:34:12 +0200 Subject: [PATCH 3/3] Migrate to github actions from circleci (#2) --- .circleci/config.yml | 19 ------------------- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 19 deletions(-) delete mode 100644 .circleci/config.yml create mode 100644 .github/workflows/ci.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 91d0bc2..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,19 +0,0 @@ -version: 2.1 - -jobs: - lint: - docker: - - image: bufbuild/buf:1.23.1 - steps: - - checkout - - run: - name: lint - command: buf lint - - run: - name: format - command: buf format --exit-code - -workflows: - build: - jobs: - - lint diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..fda0a01 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: CI + +on: push + +permissions: + contents: read + +jobs: + lint: + runs-on: ubuntu-latest + name: Protobuf lint + container: + image: bufbuild/buf:1.23.1 + steps: + - name: Checkout the code + uses: actions/checkout@v3 + - name: lint + run: buf lint + - name: format + run: buf format --exit-code