From b75489572c07a61c4887a1c2b642d09eaaa02a36 Mon Sep 17 00:00:00 2001 From: Sohrab Behdani <72007820+behdanisohrab@users.noreply.github.com> Date: Fri, 28 Apr 2023 15:08:06 +0330 Subject: [PATCH] Delete .github directory --- .github/CODEOWNERS | 3 --- .github/workflows/auto-gen.yml | 25 ------------------------- 2 files changed, 28 deletions(-) delete mode 100644 .github/CODEOWNERS delete mode 100644 .github/workflows/auto-gen.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index e675472..0000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,3 +0,0 @@ -# As per https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#example-of-a-codeowners-file - -* @bsslinux @mmdbalkhi diff --git a/.github/workflows/auto-gen.yml b/.github/workflows/auto-gen.yml deleted file mode 100644 index c6f02c8..0000000 --- a/.github/workflows/auto-gen.yml +++ /dev/null @@ -1,25 +0,0 @@ - -name: Auto-gen -on: - push: - branches: - - main - paths-ignore: - - "**/README.md" - -jobs: - add-actions: - name: gen-readme - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - - run: git config --global user.name "readme-gen" - - run: git config --global user.email "<>" - - run: python auto-gen.py - - run: git add -A - - run: git commit -m "auto generate README.md" || echo "nothing to commit, working tree clean"; exit 0 - - run: git push