Skip to content
This repository was archived by the owner on Aug 4, 2024. It is now read-only.

Commit 0f3990e

Browse files
semantic-release-bot chore(release): 1.0.0
# 1.0.0 (2022-01-31) ### Bug Fixes * Initial release ([#1](#1)) ([fec8637](fec8637))
1 parent fec8637 commit 0f3990e

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 1.0.0 (2022-01-31)
2+
3+
4+
### Bug Fixes
5+
6+
* Initial release ([#1](https://github.com/Unsupervisedcom/action-wait-for-ports/issues/1)) ([fec8637](https://github.com/Unsupervisedcom/action-wait-for-ports/commit/fec8637cc652c5f112d844c5ce236dafb5742c10))

README.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!-- start title -->
22

3-
# GitHub Action:Hello World
3+
# GitHub Action:Wait for ports
44

55
<!-- end title -->
66
<!-- start description -->
77

8-
Greet someone and record the time
8+
Waits for ports to be available
99

1010
<!-- end description -->
1111
<!-- start contents -->
@@ -15,17 +15,26 @@ Greet someone and record the time
1515
```yaml
1616
- uses: Unsupervisedcom/action-wait-for-ports@undefined
1717
with:
18-
# Who to greet
19-
# Default: World
20-
who-to-greet: ""
18+
# Comma separated list of ports to wait for
19+
ports: ""
20+
21+
# Max time in milliseconds to wait
22+
# Default: 30000
23+
max-wait: ""
24+
25+
# How frequently to check ports, in milliseconds
26+
# Default: 5000
27+
check-interval: ""
2128
```
2229
2330
<!-- end usage -->
2431
<!-- start inputs -->
2532
26-
| **Input** | **Description** | **Default** | **Required** |
27-
| :----------------- | :-------------- | :---------: | :----------: |
28-
| **`who-to-greet`** | Who to greet | `World` | **true** |
33+
| **Input** | **Description** | **Default** | **Required** |
34+
| :------------------- | :--------------------------------------------- | :---------: | :----------: |
35+
| **`ports`** | Comma separated list of ports to wait for | | **true** |
36+
| **`max-wait`** | Max time in milliseconds to wait | `30000` | **false** |
37+
| **`check-interval`** | How frequently to check ports, in milliseconds | `5000` | **false** |
2938

3039
<!-- end inputs -->
3140
<!-- start outputs -->

0 commit comments

Comments
 (0)