WordPress JS Dependencies Update #2
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: WordPress JS Dependencies Update | |
on: | |
workflow_dispatch: | |
inputs: | |
WP_SCRIPT_DIST_TAG: | |
description: The tag to use for updating the dependencies. e.g. wp-6.6 | |
default: wp-6.6 | |
required: true | |
type: string | |
repository_dispatch: | |
types: ['update_wp_dependencies'] | |
jobs: | |
update_wp_dependencies: | |
uses: inpsyde/reusable-workflows/.github/workflows/update-wordpress-js-dependencies.yml@update_wordpress_js_dependencies | |
secrets: | |
GITHUB_USER_EMAIL: ${{ secrets.DEPLOYBOT_EMAIL }} | |
GITHUB_USER_NAME: ${{ secrets.DEPLOYBOT_USER }} | |
GITHUB_USER_SSH_KEY: ${{ secrets.DEPLOYBOT_SSH_PRIVATE_KEY }} | |
GITHUB_USER_SSH_PUBLIC_KEY: ${{ secrets.DEPLOYBOT_SSH_PUBLIC_KEY }} | |
NPM_REGISTRY_TOKEN: ${{ secrets.DEPLOYBOT_PACKAGES_READ_ACCESS_TOKEN }} | |
with: | |
NPM_REGISTRY_DOMAIN: "https://npm.pkg.github.com/" | |
WP_SCRIPT_DIST_TAG: ${{ inputs.WP_SCRIPT_DIST_TAG }} |