0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/.github/workflows/changesets.yml
Juan Picado @jotadeveloper 34e1261354 chore: add changesets workflow
2021-04-09 17:54:15 +02:00

42 lines
No EOL
850 B
YAML

name: Node CI
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- 5.x
pull_request:
branches:
- 5.
env:
CI: true
jobs:
# Update package versions from changesets.
version:
timeout-minutes: 15
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/5.x' && github.repository == 'verdaccio/verdaccio'
steps:
- name: checkout code repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: setup node.js
uses: actions/setup-node@v2-beta
with:
node-version: 14
- name: create versions
uses: changesets/action@master
with:
version: pnpm ci:version
commit: 'chore: update versions'
title: 'chore: update versions'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}