Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/check-consistent-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name: Consistent Python dependencies

on:
pull_request:
merge_group:

defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check_python_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Check Python Dependencies

on:
pull_request:
merge_group:

jobs:
check_dependencies:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Static analysis

on: pull_request
on:
pull_request:
merge_group:

jobs:
tests:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
name: Lint Commit Messages

on:
- pull_request
pull_request:
merge_group:

jobs:
commitlint:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Javascript tests

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-imports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Lint Python Imports

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lockfileversion-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches:
- release-ulmo
pull_request:
merge_group:

jobs:
version-check:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/migrations-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Check Django Migrations
on:
workflow_dispatch:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pylint-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Pylint Checks

on:
pull_request:
merge_group:
push:
branches:
- master
- release-ulmo

jobs:
run-pylint:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Quality checks

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name: Semgrep code quality

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name: ShellCheck

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-assets-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: static assets check for lms and cms

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: unit-tests

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: units-test-scripts-common

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/units-test-scripts-user-retirement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: units-test-scripts-user-retirement

on:
pull_request:
merge_group:
push:
branches:
- release-ulmo
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/verify-dunder-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Verify Dunder __init__.py Files

on:
pull_request:
merge_group:
push:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unsure if it might make sense to cherry-pick the following commits first, to minimize conflicts during ulmo.1 merge:

branches:
- release-ulmo

Expand Down
Loading