Skip to content

Commit 3da8260

Browse files
authored
Merge pull request #222 from qualcomm/chore/workflows
chore/workflows
2 parents 1ae0ba5 + 2362b7e commit 3da8260

56 files changed

Lines changed: 1093 additions & 807 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,8 @@ updates:
2222
update-types:
2323
- patch
2424
- minor
25+
26+
- package-ecosystem: github-actions
27+
directory: "/"
28+
schedule:
29+
interval: "daily"

.github/workflows/deploy-angular-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
deploy:
16-
uses: ./.github/workflows/reusable-docs-deploy.yml
16+
uses: ./.github/workflows/reusable-docs-deploy-test.yml
1717
with:
1818
dockerfile: dockerfiles/dockerfile-angular-docs
1919
ecr-repository-name: angular-next

.github/workflows/deploy-angular-table-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
deploy:
16-
uses: ./.github/workflows/reusable-docs-deploy.yml
16+
uses: ./.github/workflows/reusable-docs-deploy-test.yml
1717
with:
1818
dockerfile: dockerfiles/dockerfile-angular-table-docs
1919
ecr-repository-name: angular-table-next
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Deploy Angular Docs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy-test:
8+
uses: ./.github/workflows/reusable-docs-deploy-prod.yml
9+
with:
10+
dockerfile: dockerfiles/dockerfile-angular-docs
11+
ecr-repository-name: angular-docs
12+
secrets: inherit
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Deploy Angular Table Docs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
uses: ./.github/workflows/reusable-docs-deploy-prod.yml
9+
with:
10+
dockerfile: dockerfiles/dockerfile-angular-table-docs
11+
ecr-repository-name: angular-table-docs
12+
secrets: inherit
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Deploy QUI Docs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
uses: ./.github/workflows/reusable-docs-deploy-prod.yml
9+
with:
10+
dockerfile: dockerfiles/dockerfile-qui-docs
11+
ecr-repository-name: qui-docs
12+
secrets: inherit
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Deploy React Docs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
uses: ./.github/workflows/reusable-docs-deploy-prod.yml
9+
with:
10+
dockerfile: dockerfiles/dockerfile-react-docs
11+
ecr-repository-name: react-docs
12+
secrets: inherit
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Deploy React Table Docs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
uses: ./.github/workflows/reusable-docs-deploy-prod.yml
9+
with:
10+
dockerfile: dockerfiles/dockerfile-react-table-docs
11+
ecr-repository-name: react-table-docs
12+
secrets: inherit

.github/workflows/deploy-qui-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
deploy:
15-
uses: ./.github/workflows/reusable-docs-deploy.yml
15+
uses: ./.github/workflows/reusable-docs-deploy-test.yml
1616
with:
1717
dockerfile: dockerfiles/dockerfile-qui-docs
1818
ecr-repository-name: docs-next

.github/workflows/deploy-react-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
deploy:
15-
uses: ./.github/workflows/reusable-docs-deploy.yml
15+
uses: ./.github/workflows/reusable-docs-deploy-test.yml
1616
with:
1717
dockerfile: dockerfiles/dockerfile-react-docs
1818
ecr-repository-name: react-next-docs

0 commit comments

Comments
 (0)