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 }}