Skip to content

Bump braces from 3.0.2 to 3.0.3 #19

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #19

Workflow file for this run

# As an alternative to a manual push to the prepublish branch, this workflow can
# be triggered on a release branch by assigning a special label to its pull
# request in order to set the CD circus in motion.
name: Prepublication staging
on:
pull_request:
types: [labeled]
# Would filter by branch here, but GH Actions wrongly decides not to
# trigger the workflow if we do this.
jobs:
stage:
runs-on: ubuntu-latest
# Filtering by branch here instead. Credit due to @MiguelSavignano.
# https://github.com/devmasx/merge-branch/issues/11
if: contains(github.event.pull_request.head.ref, 'release/') || contains(github.event.pull_request.head.ref, 'hotfix/')
steps:
- uses: actions/checkout@v2
- name: Merge into prepublish
uses: devmasx/[email protected]
with:
label_name: ready to launch
target_branch: prepublish
github_token: ${{ secrets.GITHUB_TOKEN }}