Bump typescript from 4.8.3 to 5.7.3 in /puck-ntag215-manager #13
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: Trigger Build and Deploy Workflow | |
on: | |
push: | |
branches-ignore: | |
- master | |
workflow_dispatch: | |
jobs: | |
trigger-nodejs-workflow: | |
permissions: | |
contents: read | |
actions: write # Ensure the token can trigger workflows | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger build workflow if pushed to any branch other than master | |
run: | | |
# Trigger the node.js.yml workflow via GitHub API using curl | |
curl -X POST \ | |
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-d '{"ref": "master"}' \ | |
"https://api.github.com/repos/${{ github.repository }}/actions/workflows/node.js.yml/dispatches" |