fix workflow file type Identify (#16576)

fix workflow file type Identify
This commit is contained in:
maoyifeng
2026-07-02 20:41:14 +08:00
committed by GitHub
parent bc54903bf6
commit 4a81b9cfde

View File

@@ -182,7 +182,8 @@ jobs:
*.go|go.mod|go.sum) has_go=true ;;
*.py|pyproject.toml|requirements*.txt) has_python=true ;;
web/*) has_web=true ;;
Dockerfile|docker-compose*.yml|build.sh) has_go=true; has_python=true ;;
Dockerfile|docker-compose*.yml) has_go=true; has_python=true ;;
build.sh) has_go=true ;;
esac
done <<< "$CHANGED_FILES"