Skip to content

Commit 25626da

Browse files
Merge pull request #4 from agntcy/feat/introduce-buf
feat: add proto files
2 parents fa34be7 + 5949f44 commit 25626da

File tree

17 files changed

+322
-399
lines changed

17 files changed

+322
-399
lines changed

.cz.toml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/linters/.markdownlint.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/linters/.yamllint.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/buf-ci.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright AGNTCY Contributors (https://github.com/agntcy)
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
name: Buf CI
5+
on:
6+
push:
7+
pull_request:
8+
types: [opened, synchronize, reopened, labeled, unlabeled]
9+
delete:
10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
jobs:
14+
buf:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: bufbuild/buf-action@v1
19+
with:
20+
token: ${{ secrets.BUF_TOKEN }}
21+
input: proto
22+
push:
23+
paths:
24+
- '**.proto'
25+
- '**/buf.yaml'
26+
- '**/buf.lock'
27+
- 'proto/README.md'
28+

.github/workflows/conventional_commits.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/dependency.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/workflows/stale.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How to Contribute
22

3-
Thanks for your interest in contributing to `<project name>`! Here are a few
3+
Thanks for your interest in contributing to OASF SDK! Here are a few
44
general guidelines on contributing and reporting bugs that we ask you to review.
55
Following these guidelines helps to communicate that you respect the time of the
66
contributors managing and developing this open source project. In return, they
@@ -17,8 +17,7 @@ in any real-time space e.g., Slack, Discord, etc.
1717
## Reporting Issues
1818

1919
Before reporting a new issue, please ensure that the issue was not already
20-
reported or fixed by searching through our [issues
21-
list](https://github.com/org_name/repo_name/issues).
20+
reported or fixed by searching through our [issues list](https://github.com/agntcy/oasf-sdk/issues).
2221

2322
When creating a new issue, please be sure to include a **title and clear
2423
description**, as much relevant information as possible, and, if possible, a
@@ -37,22 +36,45 @@ We expect new pull requests to include tests for any affected behavior, and, as
3736
we follow semantic versioning, we may reserve breaking changes until the next
3837
major version release.
3938

39+
40+
## Developer’s Certificate of Origin
41+
42+
To improve tracking of who did what, we have introduced a “sign-off” procedure.
43+
The sign-off is a line at the end of the explanation for the commit, which
44+
certifies that you wrote it or otherwise have the right to pass it on as open
45+
source work. We use the Developer Certificate of Origin (see
46+
https://developercertificate.org/) for our sign-off procedure. You must include
47+
a sign-off in the commit message of your pull request for it to be accepted. The
48+
format for a sign-off is:
49+
50+
```
51+
Signed-off-by: Random J Developer
52+
<random@developer.example.org>
53+
```
54+
55+
You can use the -s when you do a git commit to simplify including a properly
56+
formatted sign-off in your commits. If you need to add your sign-off to a commit
57+
you have already made, you will need to amend:
58+
```
59+
git commit --amend --signoff
60+
```
61+
4062
## Other Ways to Contribute
4163

42-
We welcome anyone that wants to contribute to `<project name>` to triage and
64+
We welcome anyone that wants to contribute to OASF SDK to triage and
4365
reply to open issues to help troubleshoot and fix existing bugs. Here is what
4466
you can do:
4567

4668
- Help ensure that existing issues follows the recommendations from the
4769
_[Reporting Issues](#reporting-issues)_ section, providing feedback to the
4870
issue's author on what might be missing.
4971
- Review and update the existing content of our
50-
[Wiki](https://github.com/org_name/repo_name/wiki) with up-to-date
72+
[Wiki](https://github.com/agntcy/oasf-sdk/wiki) with up-to-date
5173
instructions and code samples.
5274
- Review existing pull requests, and testing patches against real existing
53-
applications that use `<project name>`.
75+
applications that use `oasf sdk`.
5476
- Write a test, or add a missing test case to an existing test.
5577

56-
Thanks again for your interest on contributing to `<project name>`!
78+
Thanks again for your interest on contributing to `oasf-sdk`!
5779

5880
:heart:

0 commit comments

Comments
 (0)