hotfix: added release dir .env variable for NPM publish stage (#229) #22
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: Create Pull requests on dependent components for new tag or release | |
# Controls when the action will run. | |
on: | |
push: | |
tags: | |
- '*' | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# React Line Style | |
- name: Create Pull Request on https://github.com/Iconscout/react-unicons | |
uses: ./.github/actions/update-dep-version | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.GH_AUTH_TOKEN }} | |
with: | |
package_name: unicons | |
destination_repo: Iconscout/react-unicons | |
destination_base_branch: master | |
user_email: [email protected] | |
user_name: tarunmangukiya | |
pull_request_reviewers: tschaefermedia | |
# VueJs Line Style | |
- name: Create Pull Request on https://github.com/Iconscout/vue-unicons | |
uses: ./.github/actions/update-dep-version | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.GH_AUTH_TOKEN }} | |
with: | |
package_name: unicons | |
destination_repo: Iconscout/vue-unicons | |
destination_base_branch: master | |
user_email: [email protected] | |
user_name: tarunmangukiya | |
pull_request_reviewers: tschaefermedia | |
# React Native Line Style | |
- name: Create Pull Request on https://github.com/Iconscout/react-native-unicons | |
uses: ./.github/actions/update-dep-version | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.GH_AUTH_TOKEN }} | |
with: | |
package_name: unicons | |
destination_repo: Iconscout/react-native-unicons | |
destination_base_branch: master | |
user_email: [email protected] | |
user_name: tarunmangukiya | |
pull_request_reviewers: tschaefermedia | |
# React Solid Style | |
- name: Create Pull Request on https://github.com/Iconscout/react-unicons-solid | |
uses: ./.github/actions/update-dep-version | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.GH_AUTH_TOKEN }} | |
with: | |
package_name: unicons | |
destination_repo: Iconscout/react-unicons-solid | |
destination_base_branch: master | |
user_email: [email protected] | |
user_name: tarunmangukiya | |
pull_request_reviewers: tschaefermedia | |
# Vue Solid Style | |
- name: Create Pull Request on https://github.com/Iconscout/vue-unicons-solid | |
uses: ./.github/actions/update-dep-version | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.GH_AUTH_TOKEN }} | |
with: | |
package_name: unicons | |
destination_repo: Iconscout/vue-unicons-solid | |
destination_base_branch: master | |
user_email: [email protected] | |
user_name: tarunmangukiya | |
pull_request_reviewers: tschaefermedia | |
# React Monochrome Style | |
- name: Create Pull Request on https://github.com/Iconscout/react-unicons-monochrome | |
uses: ./.github/actions/update-dep-version | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.GH_AUTH_TOKEN }} | |
with: | |
package_name: unicons | |
destination_repo: Iconscout/react-unicons-monochrome | |
destination_base_branch: master | |
user_email: [email protected] | |
user_name: tarunmangukiya | |
pull_request_reviewers: tschaefermedia |