From d36d53b4cf0d014824a085d65022e5cb151d904e Mon Sep 17 00:00:00 2001 From: Fyphen Date: Sun, 4 Feb 2024 19:34:57 +0900 Subject: [PATCH] Delete .github/updater.yml --- .github/updater.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/updater.yml diff --git a/.github/updater.yml b/.github/updater.yml deleted file mode 100644 index 8346747..0000000 --- a/.github/updater.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Update File - -on: - schedule: - - cron: '0 * * * *' - push: - branches: - - main - -jobs: - update-file: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Update File - run: | - sed -i "s/Last updated: .*/Last updated: $(date '+%Y-%m-%d %H:%M:%S')/" update.md - git config --global user.email "fyphensub@gmail.com" - git config --global user.name "Fyphen" - git commit -am "Update file with current date and time" - git push