From d6f95ffbc8219db5c9fa95ade88f61801f0ca86b Mon Sep 17 00:00:00 2001 From: Fd Date: Wed, 28 Jan 2026 14:56:32 +0000 Subject: [PATCH] Add .github/workflows/login-gitea-runner.yml --- .github/workflows/login-gitea-runner.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/login-gitea-runner.yml diff --git a/.github/workflows/login-gitea-runner.yml b/.github/workflows/login-gitea-runner.yml new file mode 100644 index 0000000..2da4d57 --- /dev/null +++ b/.github/workflows/login-gitea-runner.yml @@ -0,0 +1,23 @@ +name: Daily check in + +on: + schedule: + - cron: "0 22 * * *" + workflow_dispatch: + +jobs: + check-in: + runs-on: docker + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: "20" + + - name: Check In + run: node index.js + env: + CRED: ${{ secrets.CRED }} + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + DISCORD_USER: ${{ secrets.DISCORD_USER }}