🧪 test(maintain): push with conventional commit

Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com>
This commit is contained in:
Abhiraj Roy
2024-06-03 03:49:26 +05:30
parent 13ab908c9b
commit 1a55d131a7

19
push Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Iconized
pull_from_github(){
git pull
}
push_to_github() {
ezcommits
git push -u origin master
}
main(){
pull_from_github
push_to_github
}
main