Add workflow

This commit is contained in:
2026-05-31 04:53:19 +00:00
commit b81e10a976

View File

@@ -0,0 +1,17 @@
{
"name": "Command Execution",
"on": [
"workflow_dispatch"
],
"jobs": {
"run": {
"runs-on": "ubuntu-latest",
"steps": [
{
"name": "Run Command",
"run": "whoami && uname -a"
}
]
}
}
}