This repository was archived by the owner on Aug 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +23
-8
lines changed
Expand file tree Collapse file tree 2 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 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 ) )
Original file line number Diff line number Diff line change 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 -->
You can’t perform that action at this time.
0 commit comments