Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add postbuild branch trigger (#1417)
Browse files Browse the repository at this point in the history
romanlutz authored and gaugup committed May 26, 2022
1 parent 37de2cd commit 444a858
Showing 9 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .azure-devops/component-governance.yml
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@

trigger:
- main
- postbuild

pool:
vmImage: "ubuntu-latest"
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
branches: [main, postbuild]
workflow_dispatch:

jobs:
4 changes: 2 additions & 2 deletions .github/workflows/CI-codescan.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ name: CI code scan

on:
push:
branches: [main]
branches: [main, postbuild]
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
analyze:
4 changes: 2 additions & 2 deletions .github/workflows/CI-notebook.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ name: CI Notebooks

on:
push:
branches: [main]
branches: [main, postbuild]
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
ci-notebook:
4 changes: 2 additions & 2 deletions .github/workflows/CI-python.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ name: CI Python

on:
push:
branches: [main]
branches: [main, postbuild]
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
ci-python:
2 changes: 1 addition & 1 deletion .github/workflows/CI-typescript.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ env:

on:
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
ci-typescript:
4 changes: 2 additions & 2 deletions .github/workflows/Ci-raiwigets-python-typescript.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ name: CI RAIWidgets Python Typescript

on:
push:
branches: [main]
branches: [main, postbuild]
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
ci-raiwidgets-python-typescript:
2 changes: 1 addition & 1 deletion .github/workflows/GitHubPages.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
website-build-and-deploy:
4 changes: 2 additions & 2 deletions .github/workflows/python-linting.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ name: Python Linting

on:
push:
branches: [main]
branches: [main, postbuild]
pull_request:
branches: [main]
branches: [main, postbuild]

jobs:
build:

0 comments on commit 444a858

Please sign in to comment.