Skip to content

Commit 7286e99

Browse files
Allow codecov to upload the results in github actions (#28)
Signed-off-by: Peter Zhu <zhujiaxi@amazon.com>
1 parent 1761661 commit 7286e99

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/build-test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
---
22
name: build-test
33

4-
on: [push, pull_request]
4+
on:
5+
push:
6+
branches:
7+
- 'main'
8+
pull_request_target:
9+
types: [opened, synchronize, reopened]
510

611
jobs:
712
build-test:

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ When you run the above command, the following takes place:
7777

7878
For detailed instructions on starting the service with Docker, refer to the project's [Docker Setup](./docker/README.md).
7979

80+
### Bump Package Version
81+
82+
Please bump package version with every new commit by updating `package.json` and run `npm install` to update `package-lock.json`. Please do not use `npm version <>` as it will not sign DCO for your commit.
83+
8084
## Code of Conduct
8185

8286
This project has adopted [the Open Source Code of Conduct](CODE_OF_CONDUCT.md).

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.10",
3+
"version": "0.1.11",
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)