init: a repo for access rights of workspaces of infilytics@alps

This commit is contained in:
Pallav Vasa
2025-05-17 15:01:07 +00:00
commit c7ad6d661a
4 changed files with 91 additions and 0 deletions

29
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "GitOps(Update): access.yml",
"type": "shell",
"command": ".bin/gitops update access",
"group": "build",
"problemMatcher": [],
"detail": "Copy access.yml to $HOME"
},
{
"label": "GitOps(Update): authorized_keys",
"type": "shell",
"command": ".bin/gitops update authorized_keys",
"group": "build",
"problemMatcher": [],
"detail": "Copy authorized_keys to $HOME/.ssh"
},
{
"label": "Cleanup worktree",
"type": "shell",
"command": "git clean -Xfd",
"problemMatcher": [],
"detail": "delete all untracked files listed in .gitignore"
}
],
"inputs": []
}