Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe11fb8bcd | |||
|
|
7e554f2bbf |
2
.github/workflows/job_sync.yml
vendored
2
.github/workflows/job_sync.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
dst_hash=$(git ls-remote ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} refs/heads/master | cut -f1)
|
dst_hash=$(git ls-remote ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} refs/heads/master | cut -f1)
|
||||||
echo "src_hash=$src_hash"
|
echo "src_hash=$src_hash"
|
||||||
echo "dst_hash=$dst_hash"
|
echo "dst_hash=$dst_hash"
|
||||||
if [ "$src_hash" != "$dst_hash" ]; then
|
if [ "$src_hash" != "$dst_hash" -a "$src_hash" != "" -a "$dst_hash" != "" ]; then
|
||||||
echo "sync_needed=true" >> $GITHUB_OUTPUT
|
echo "sync_needed=true" >> $GITHUB_OUTPUT
|
||||||
else
|
else
|
||||||
echo "sync_needed=false" >> $GITHUB_OUTPUT
|
echo "sync_needed=false" >> $GITHUB_OUTPUT
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# HTTP Client
|
# HTTP Client
|
||||||

|

|
||||||
|
|
||||||
This plugin is an HTTP client for [Micro](https://pkg.go.dev/go.unistack.org/micro/v4).
|
This plugin is an HTTP client for [Micro](https://pkg.go.dev/go.unistack.org/micro/v4).
|
||||||
It implements the [micro.Client](https://pkg.go.dev/go.unistack.org/micro/v4/client#Client) interface.
|
It implements the [micro.Client](https://pkg.go.dev/go.unistack.org/micro/v4/client#Client) interface.
|
||||||
|
|||||||
Reference in New Issue
Block a user