Skip to content
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

Add staging branch to workflow #1311

Merged
merged 1 commit into from
Jul 29, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: cache

on:
push:
branches: [main, dev]
branches: [main, dev, staging]
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/consistent_engine_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: consistent_engine_node

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- '**/package.json'
- '.github/workflows/consistent_engine_node.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/consistent_engine_npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: consistent_engine_npm

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- '**/package.json'
- '.github/workflows/consistent_engine_npm.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/consistent_nvmrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: consistent_nvmrc

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- '**/package.json'
- '**/.nvmrc'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/contract_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: contract_version

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- '**/package.json'
- '**/Cargo.toml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: cypress

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/event_dev_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: event_dev_push

on:
push:
branches: [dev]
branches: [dev, staging]
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: lint

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lockstep_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: lockstep_version

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- '**/package.json'
- '**/Cargo.toml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/protocol_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: protocol_lint

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- 'protocol/**'
- '.github/workflows/protocol_clippy.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/protocol_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: protocol_tests

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
paths:
- 'protocol/**'
- '.github/workflows/protocol_tests.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/provider_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: provider_image

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: tests

on:
pull_request:
branches: [main, dev, release/*]
branches: [main, dev, staging, release/*]
workflow_dispatch:

concurrency:
Expand Down
Loading