upd job_sync && upd gitignore
This commit is contained in:
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
|
||||||
|
|||||||
30
.gitignore
vendored
30
.gitignore
vendored
@@ -1,3 +1,9 @@
|
|||||||
|
# Develop tools
|
||||||
|
/.vscode/
|
||||||
|
/.idea/
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
|
||||||
# Binaries for programs and plugins
|
# Binaries for programs and plugins
|
||||||
*.exe
|
*.exe
|
||||||
*.exe~
|
*.exe~
|
||||||
@@ -5,11 +11,29 @@
|
|||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
|
|
||||||
# Test binary, built with `go test -c`
|
# Folders
|
||||||
|
_obj
|
||||||
|
_test
|
||||||
|
_build
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Architecture specific extensions/prefixes
|
||||||
|
*.[568vq]
|
||||||
|
[568vq].out
|
||||||
|
|
||||||
|
*.cgo1.go
|
||||||
|
*.cgo2.c
|
||||||
|
_cgo_defun.c
|
||||||
|
_cgo_gotypes.go
|
||||||
|
_cgo_export.*
|
||||||
|
|
||||||
|
# Test binary, build with `go test -c`
|
||||||
*.test
|
*.test
|
||||||
|
|
||||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
*.out
|
*.out
|
||||||
|
|
||||||
# Dependency directories (remove the comment below to include it)
|
# vim temp files
|
||||||
# vendor/
|
*~
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
Reference in New Issue
Block a user