Bump braces from 3.0.2 to 3.0.3 #133
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
types: [closed] # Merged pull-requests count as closed pull-requests. | |
jobs: | |
create-new-version: | |
runs-on: ubuntu-latest | |
name: Create new version/tag | |
steps: | |
- uses: actions/checkout@v2 | |
if: github.event.pull_request.merged # Only run on merged pull-requests | |
with: | |
ref: ${{ github.event.pull_request.merge_commit_sha }} # Checkout the merged commit | |
fetch-depth: 0 | |
token: ${{ secrets.ORIGAMI_VERSION_TOKEN }} | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* # Get all tags from the origin | |
if: github.event.pull_request.merged # Only run on merged pull-requests | |
- uses: Financial-Times/[email protected] | |
name: Create new version/tag | |
if: github.event.pull_request.merged # Only run on merged pull-requests | |
with: | |
github-token: ${{ secrets.ORIGAMI_GITHUB_TOKEN }} |