Skip to content

Commit 140f782

Browse files
committed
Merge branch 'master' of https://github.com/IgniteUI/igniteui-angular into zkolev/addressing-comments-from-skill
2 parents 10cae71 + 5ff4678 commit 140f782

3 files changed

Lines changed: 33 additions & 1 deletion

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Trigger Licensed Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
dispatch-to-private-repo:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Get app token
13+
id: app-token
14+
uses: actions/create-github-app-token@v2
15+
with:
16+
app-id: ${{ secrets.IGNITEUI_GITHUB_APP_ID }}
17+
private-key: ${{ secrets.IGNITEUI_GITHUB_APP_PRIVATE_KEY }}
18+
owner: IgniteUI
19+
20+
- name: Send repository dispatch to private repo
21+
uses: peter-evans/repository-dispatch@v3
22+
with:
23+
token: ${{ steps.app-token.outputs.token }}
24+
repository: IgniteUI/igniteui-actions
25+
event-type: igniteui-angular-public-release-created
26+
client-payload: |
27+
{
28+
"release_tag": "${{ github.event.release.tag_name }}",
29+
"public_repo": "${{ github.repository }}"
30+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Nested package.json's are only needed for development.
2+
**/package.json

projects/igniteui-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
}
105105
},
106106
"igxDevDependencies": {
107-
"@igniteui/angular-schematics": "~21.1.1490-beta.0"
107+
"@igniteui/angular-schematics": "~21.1.1490"
108108
},
109109
"ng-update": {
110110
"migrations": "./migrations/migration-collection.json",

0 commit comments

Comments
 (0)