mirror of
https://github.com/github/codeql-action.git
synced 2026-01-05 22:20:20 +08:00
4 lines
104 B
Lua
4 lines
104 B
Lua
local conditions_check = function (capacity, weight)
|
|
return capacity == nil or weight <= capacity
|
|
end
|