-
Notifications
You must be signed in to change notification settings - Fork 22
feat(cd): adding dispatch workflow for cd #3765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,35 @@ | ||||||
| name: Trigger Deployment Workflow | ||||||
|
|
||||||
| on: | ||||||
| push: | ||||||
| branches: | ||||||
| - vnext | ||||||
| - master | ||||||
| workflow_dispatch: | ||||||
| inputs: | ||||||
| branch: | ||||||
| description: 'Input a branch name (e.g., vnext)' | ||||||
| required: true | ||||||
|
|
||||||
| permissions: | ||||||
| contents: read | ||||||
| jobs: | ||||||
| trigger: | ||||||
| runs-on: ubuntu-latest | ||||||
|
|
||||||
| steps: | ||||||
| - name: Trigger Workflow in Another Repository | ||||||
| run: | | ||||||
| # Set the required variables | ||||||
| repo_owner="IgniteUI" | ||||||
| repo_name="igniteui-actions" | ||||||
| event_type="igniteui-angular-samples-cd" | ||||||
| branch="${{ github.ref_name }}" | ||||||
|
||||||
| branch="${{ github.ref_name }}" | |
| branch="${{ github.event.inputs.branch || github.ref_name }}" |
Copilot
AI
Oct 31, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The secret name 'FINE_PATKA' appears to be a typo. It should likely be 'FINE_PAT_KA' or 'FINE_GRAINED_PAT' based on standard naming conventions for fine-grained personal access tokens.
| -H "Authorization: Bearer ${{ secrets.FINE_PATKA }}" \ | |
| -H "Authorization: Bearer ${{ secrets.FINE_GRAINED_PAT }}" \ |
Uh oh!
There was an error while loading. Please reload this page.