Skip to content

Check ready for stable #553

Check ready for stable

Check ready for stable #553

name: Check ready for stable
on:
workflow_dispatch:
schedule:
# * is a special character in YAML, so you have to quote this string
# every day
- cron: '33 3 * * *'
jobs:
ready-for-stable:
name: check ready for stable
if: |
github.repository == 'ioBroker/ioBroker.repositories'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm i
- run: npm run stable
env:
OWN_GITHUB_TOKEN: ${{ secrets.OWN_GITHUB_TOKEN }}
IOBBOT_GITHUB_TOKEN: ${{ secrets.IOBBOT_GITHUB_TOKEN }}