Trigger another build against v1.4.0 build system #10
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
name: PR Build | |
permissions: | |
contents: read | |
packages: read | |
on: | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | |
# By default, a workflow only runs when a pull_request event's activity type is opened, synchronize, or reopened. | |
pull_request: | |
types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
branches: | |
- master | |
jobs: | |
pr-build: | |
uses: ritterim/public-github-actions/.github/workflows/[email protected] | |
#uses: ./.github/workflows/npm-packages-pr-build.yml | |
with: | |
always_increment_patch_version: true | |
npm_package_name: platform-icons | |
run_tests: false |