Skip to content

Commit 8b9662b

Browse files
Update Readme links and add env example (#20)
* Update Readme links and add env example Signed-off-by: Peter Zhu <zhujiaxi@amazon.com> * ignore env example Signed-off-by: Peter Zhu <zhujiaxi@amazon.com> * Update workflow naming Signed-off-by: Peter Zhu <zhujiaxi@amazon.com> * update link Signed-off-by: Peter Zhu <zhujiaxi@amazon.com> --------- Signed-off-by: Peter Zhu <zhujiaxi@amazon.com>
1 parent 3213986 commit 8b9662b

7 files changed

+14
-8
lines changed

.env.example

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
WEBHOOK_PROXY_URL=
2+
APP_ID=
3+
PRIVATE_KEY=
4+
WEBHOOK_SECRET=
5+
INSTALLATION_ID=

.github/workflows/check-version-bump.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Check Version Bump
2+
name: check-version-bump
33

44
on:
55
pull_request:

.github/workflows/license-header-checker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: License Header Checker
2+
name: license-header-checker
33

44
on: [push, pull_request]
55

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ npm-debug.log
33
*.pem
44
*.swp*
55
!mock-cert.pem
6-
.env*
6+
.env
77
coverage
88
junit.xml
99
bin

.licenserc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
".gz",
2929
".toml",
3030
".ini",
31-
"gradle/wrapper"
31+
"gradle/wrapper",
32+
".env.example"
3233
]
3334
}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This repository hosts the source code of an automation app to handle the daily a
1616

1717
## Project Resources
1818

19-
The automation app utilizes the [Probot](https://probot.github.io/) framework and [Octokit](https://docs.github.com/en/rest/using-the-rest-api/libraries-for-the-rest-api?apiVersion=2022-11-28) library to perform user-defined operations on top of the resources within GitHub. See [configs](configs/operations/hello-world.yml) yaml for more information.
19+
The automation app utilizes the [Probot](https://probot.github.io/) framework and [Octokit](https://docs.github.com/en/rest/using-the-rest-api/libraries-for-the-rest-api?apiVersion=2022-11-28) library to perform user-defined operations on top of the resources within GitHub. See [configs](configs) yaml for more information.
2020

2121
## Usages
2222

@@ -33,8 +33,8 @@ A `Service` is an instance of the app that manages and manipulates specific `Res
3333

3434
To create a service, you need two configuration files:
3535

36-
- **Resource configuration file**: Defines the resources that the service will manage or modify (`configs/resources/sample-resource.yml`).
37-
- **Operation configuration file**: Defines the operations (tasks) that the service will execute with the resources (`configs/resources/sample-operation.yml`).
36+
- **Resource configuration file**: Defines the resources that the service will manage or modify. [Sample Resource Config](configs/resources/sample-resource.yml).
37+
- **Operation configuration file**: Defines the operations (tasks) that the service will execute with the resources. [Sample Operation Config](configs/operations/sample-operation.yml).
3838

3939
### Start the Service
4040

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opensearch-automation-app",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "An Automation App that handles all your GitHub Repository Activities",
55
"author": "Peter Zhu",
66
"homepage": "https://github.com/opensearch-project/automation-app",

0 commit comments

Comments
 (0)