Skip to content

Commit

Permalink
feat: Add ReleaseBot
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbo2002 committed Apr 10, 2021
1 parent 302526c commit 2fba164
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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@v2
- name: ☁️ Checkout ReleaseBot
uses: actions/checkout@v2
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 }}

0 comments on commit 2fba164

Please sign in to comment.