Skip to content

Commit

Permalink
Merge pull request #4 from jhkim5981/main
Browse files Browse the repository at this point in the history
Initial commit
  • Loading branch information
mikyung-lee authored Oct 25, 2024
2 parents ba21080 + 34fe85d commit b25ef7e
Show file tree
Hide file tree
Showing 37 changed files with 678 additions and 783 deletions.
17 changes: 17 additions & 0 deletions .github/pull_request_template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Description
<!-- Briefly describe the changes in this pull request. -->

## Related Issue (Optional)
<!-- Mention the issue number that this PR addresses. -->
- Issue # (e.g., #123)

## Changes
<!-- List your changes in detail and what reviewers should focus on -->
- Change 1
- Change 2

## Screenshots (Optional)
<!-- Attach screenshots or GIFs to show the changes, if applicable. -->

## Additional Comments (Optional)
<!-- Any other comments or information that reviewers should be aware of. -->
47 changes: 47 additions & 0 deletions .github/workflows/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: PR assignment
on:
pull_request_target:
types: [opened, edited, synchronize, reopened, ready_for_review]

permissions:
contents: read
issues: write
pull-requests: write

jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: Request Reviewers
uses: actions/github-script@v6
with:
script: |
const author = context.payload.pull_request.user.login;
let reviewers = ['black-billed-magpie','jhkim5981'];
if (reviewers.includes(author)) {
if(reviewers.length === 1)
reviewers = reviewers.map(reviewer => reviewer === author ? 'mikyung-lee' : reviewer);
else {
reviewers = reviewers.filter(reviewer => reviewer !== author);
}
}
await github.rest.pulls.requestReviewers({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
reviewers: reviewers
});
- name: Request Assignees
uses: actions/github-script@v6
with:
script: |
const assignees = ['jhkim5981', 'mikyung-lee']; // assignees
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
assignees: assignees
});
45 changes: 45 additions & 0 deletions .github/workflows/fabric_contract_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Fabric Contract CI

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]

jobs:
fabric-contract-build:
runs-on: ubuntu-latest
timeout-minutes: 60

defaults:
run:
working-directory: source/did-fabric-contract

steps:
- uses: actions/checkout@v4

- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: '1.22'

- name: Install dependencies
run: |
go mod tidy
go mod vendor
- name: Build the project
run: go build ./...

- name: Compress files to zip and tar.gz
run: |
zip -r "Source code.zip" .
tar -czvf "Source code.tar.gz" .
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ github.sha }}
path: |
source/did-fabric-contract/Source code.zip
source/did-fabric-contract/Source code.tar.gz
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v1.0.0 (2024-08-29)
## v1.0.0 (2024-10-18)

### 🚀 New Features

Expand Down
14 changes: 11 additions & 3 deletions CLA.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@ and recipients of software distributed by the Project, You reserve all right, ti
and to Your Contributions.

**1. Definitions.**
This document is a CLA (Contributor License Agreement) that must be signed by all Contributors to the Project.
**“You”** or **“Your”** shall mean the copyright owner or legal entity authorized by the copyright owner that is making this CLA with the Project. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
**“Contribution”** shall mean the code, documentation or other original works of authorship expressly identified in Schedule A, as well as any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to the Project for inclusion in, or documentation of, any of the products owned or managed by the Project (the **“Work”**). For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Project or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Project for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as “Not a Contribution.”

**2. Grant of Copyright License.**
Subject to the terms and conditions of this CLA, You hereby grant to the Project and to recipients of software distributed by the Project a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute Your Contributions and such derivative works.
For the avoidance of doubt, by agreeing to this CLA, You confirm that the Project and recipients of software distributed by the Project are free to use the code, documentation, or other original works of authorship that You submit as part of Your Contributions.

**3. Grant of Patent License.**
Subject to the terms and conditions of this CLA, You hereby grant to the Project and to recipients of software distributed by the Project a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this CLA for that Contribution or Work shall terminate as of the date such litigation is filed.
Subject to the terms and conditions of this CLA, You hereby grant to the Project and to recipients of software distributed by the Project a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted.
Should any entity initiate patent litigation against you or any other entity (imcluding through a cross-claim or counterclaim in a lawsuit), alleging that your Contribution or the Work to which you have contributed constitutes direct or contributory patent infrigement, any patent licenses granted to that entity for the Contribution or Work shall be terminated as of the date such litigation is filed.

**4. Representations with Respect to the License and Contributions.**
You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to the Project, or that your employer has executed a separate Corporate CLA with the Project.
Expand All @@ -33,10 +36,15 @@ You represent that you are legally entitled to grant the above license. If your
You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions.

**6. Disclaimers.**
You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE.
You have no additional obligations, such as making further code support, after making a Contribution, and any support for Your Contribution is at Your discretion.
You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" BASE, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE.
Also, You shall retain the rights to Your Contribution and may use it for other projects or purposes.

**7. Non-Original Creations.**
Should You wish to submit work that is not Your original creation, You may submit it to the Project separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as “Submitted on behalf of a third-party: [named here].”
Additionally, if submitting non-original works, You must cleary specify the original author's license and submit it as a separate file.
If You violate this obligation by submitting a third party's work without proper authorization, resulting in copyright infrigement, You shall be solely responsible for any legal liabilities arising from such infrigement.

**8. Agreements.**
You agree to notify the Project of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.
You agree to notify the Project of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.
"To sign this CLA, please follow the automated procedure on GitHub or download the PDF, sign it, and submit it to [email protected]."
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ Our commit messages follow the [OpenDID Commit Rule](https://github.com/OmniOneI
Before we can accept your pull request, you must submit a CLA. This only needs to be done once. Complete your CLA here: [Contributor License Agreement](CLA.md)

## License
Copyright 2024 Raonsecure
[Apache 2.0](LICENSE)
Loading

0 comments on commit b25ef7e

Please sign in to comment.