File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ ## [ 1.6.0] - 2025-05-16
11
+
12
+ ### Added
13
+
14
+ - Add optional ` github-status-gw ` input to allow for customizing the gateway used for the commit status updates.
15
+
10
16
## [ 1.5.0] - 2025-03-07
11
17
12
18
### Added
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ The signing key and proof will be used as [inputs](#inputs) to the action.
83
83
| ` filebase-secret-key ` | Filebase secret key | - |
84
84
| ` set-github-status ` | Set GitHub commit status with build CID. Use "true" or "false" (as strings) | ` 'true' ` |
85
85
| ` set-pr-comment ` | Set PR comments with IPFS deployment information. Use "true" or "false" (as strings) | ` 'true' ` |
86
+ | ` github-status-gw ` | Gateway to use for the links in commit status updates (The green checkmark with the CID) | ` 'inbrowser.link' ` |
86
87
| ` upload-car-artifact ` | Upload and publish the CAR file on GitHub Action Summary pages | ` 'true' ` |
87
88
| ` cluster-retry-attempts ` | Number of retry attempts for IPFS Cluster uploads | ` '5' ` |
88
89
| ` cluster-timeout-minutes ` | Timeout in minutes for each IPFS Cluster upload attempt | ` '2' ` |
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ inputs:
77
77
description : ' Set GitHub commit status with build CID. Use "true" or "false" (as strings)'
78
78
default : ' true'
79
79
required : false
80
+ github-status-gw :
81
+ description : ' Gateway URL to use for the commit status target_url. Defaults to `inbrowser.link`'
82
+ default : ' inbrowser.link'
83
+ required : false
80
84
set-pr-comment :
81
85
description : ' Set PR comments with IPFS deployment information. Use "true" or "false" (as strings)'
82
86
default : ' true'
@@ -327,7 +331,7 @@ runs:
327
331
repo: context.repo.repo,
328
332
sha: sha,
329
333
state: 'success',
330
- target_url: `https://inbrowser.link /ipfs/${cid}`,
334
+ target_url: `https://${{ inputs.github-status-gw }} /ipfs/${cid}`,
331
335
description: `CID: ${cid}`,
332
336
context: 'IPFS'
333
337
});
You can’t perform that action at this time.
0 commit comments