Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

TheBusyBot

TheBusyBot #91624

Workflow file for this run

name: TheBusyBot
on:
# Manual workflow trigger
workflow_dispatch: {}
# Run every ~10 minutes
schedule:
- cron: '*/10 * * * *'
jobs:
runner:
name: Automatic project builder
runs-on: ubuntu-latest
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
steps:
- name: Checking out Repository
uses: actions/[email protected]
with:
ref: gh-pages
- name: Setting up Java 17
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: '17'
java-package: jdk
architecture: x64
- name: Setting up node.js
uses: actions/[email protected]
with:
node-version: '16.6.0'
- name: Installing dependencies
run: npm install
- name: Setting up git environment
run: sh src/setup.sh
env:
LOGIN_EMAIL: ${{ secrets.LOGIN_EMAIL }}
- name: Running builds program
run: node src/single-run.js
env:
JSON_CONFIG: ${{ secrets.JSON_CONFIG }}