Trigger another build to test release process #5
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 Merged | |
permissions: | |
contents: read | |
id-token: write | |
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. | |
# We want to run on 'closed' to trigger, but we also have to check if it was merged. | |
# That check is: if: github.event.pull_request.merged == true | |
pull_request: | |
types: [ closed ] | |
branches: | |
- master | |
jobs: | |
npm-packages-pr-create-tag: | |
uses: ritterim/public-github-actions/.github/workflows/[email protected] | |
#uses: ./.github/workflows/npm-packages-pr-create-tag.yml | |
if: github.event.pull_request.merged == true | |
secrets: | |
gh_actions_secret_passing_passphrase: ${{ secrets.ACTIONS_SECRET_PASSING_PASSPHRASE }} | |
gh_app_private_key: ${{ secrets.RIMDEV_NPM_RELEASES_APP_PRIVATE_KEY }} | |
with: | |
always_increment_patch_version: true | |
gh_app_id: ${{ vars.RIMDEV_NPM_RELEASES_APP_APPID }} | |
npm_package_name: platform-icons | |
run_tests: false |