Skip to content

Commit

Permalink
Trigger import workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akoz0r committed Feb 1, 2024
1 parent a9e4aad commit 738d9d5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/trigger-backened-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Trigger import workflow

on:
workflow_dispatch:
push:
branches:
- main
- master

jobs:
trigger-workflow:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.cicd }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'novorender',
repo: 'novorender-backend',
workflow_id: 'import.yml',
ref: 'master'
})

0 comments on commit 738d9d5

Please sign in to comment.