18 lines
492 B
YAML
18 lines
492 B
YAML
name: rollback
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency: prr:deploy
|
|
|
|
jobs:
|
|
pr:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- run: git clone --depth=1 https://github.com/MithrilJS/mithril.js.git && cd mithril.js
|
|
- uses: ./.github/actions/setup
|
|
- run: npm run build
|
|
- run: npx pr-release rollback --verbose --target master --source next --verbose --ignore 'package*' --ignore docs/changelog.md --ignore docs/recent-changes.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|