-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from stof/add_contributing_guidelines
Add contribution guidelines
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# How to contribute | ||
|
||
## Generated code | ||
|
||
Most code in this package is generated by the | ||
[async-aws code generator](https://packagist.org/packages/async-aws/code-generator). | ||
|
||
Changes should be done in the manifest file and code should be regenerated | ||
instead of changing it directly, as manual changes will be lost when the code | ||
is regenerated. The CI will enforce that rule. | ||
To regenerate the code, run: | ||
|
||
```bash | ||
./generate --all | ||
``` | ||
|
||
As Amazon Incentives does not provide an API description for SDKs in the format | ||
used for AWS SDKs, we are maintaining it ourselves in the | ||
[`manifest`](../manifest/) folder. This manifest is partial. It only covers the | ||
endpoints supported by the SDK. |