Skip to content

ReleaseBot

ReleaseBot #117

Workflow file for this run

name: ReleaseBot
on:
workflow_dispatch:
push:
branches: ['develop']
schedule:
- cron: '25 8 * * 3'
jobs:
release-bot:
runs-on: ubuntu-latest
steps:
- name: ☁️ Checkout Project
uses: actions/checkout@v3
- name: ☁️ Checkout ReleaseBot
uses: actions/checkout@v3
with:
repository: sebbo2002/release-bot
path: ./.actions/release-bot
- name: 📦 Install Dependencies
run: npm ci
working-directory: ./.actions/release-bot
- name: 🤖 Run ReleaseBot
uses: ./.actions/release-bot
with:
token: ${{ secrets.GITHUB_TOKEN }}