Skip to content

Commit

Permalink
Merge pull request #11 from dagster-io/fixdocs
Browse files Browse the repository at this point in the history
Fix incorrect comment in hybrid quickstart about the deployment input being unused for PRs
  • Loading branch information
gibsondan authored Jul 16, 2024
2 parents 25bd14e + d35e4f2 commit 4f432b9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dagster-cloud-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request: # For branch deployments
types: [opened, synchronize, reopened, closed]

concurrency:
concurrency:
# Cancel in-progress deploys to the same branch
group: ${{ github.ref }}
cancel-in-progress: true
Expand All @@ -27,19 +27,19 @@ jobs:
dagster-cloud-deploy:
runs-on: ubuntu-20.04
steps:
# If this is a closed PR the prerun step closes the branch deployment and returns
# output.result='skip' which is used to skip other steps in this workflow.
# If this is a closed PR the prerun step closes the branch deployment and returns
# output.result='skip' which is used to skip other steps in this workflow.
- name: Pre-run checks
id: prerun
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected]

# Checkout the project
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3
if: steps.prerun.outputs.result != 'skip'
with:
ref: ${{ github.head_ref }}

# Validate dagster_cloud.yaml and the connection to dagster.cloud
- name: Validate configuration
id: ci-validate
Expand All @@ -56,8 +56,8 @@ jobs:
with:
project_dir: ${{ env.DAGSTER_PROJECT_DIR }}
dagster_cloud_yaml_path: ${{ env.DAGSTER_CLOUD_YAML_PATH }}
# The full deployment name. If this run is for a PR, this value is ignored and a branch
# deployment is used.
# A full deployment name. If this run is for a pull request, this value will be used as
# the base deployment for the branch deployment.
deployment: 'prod'

# Any value can be used as the docker image tag. It is recommended to use a unique value
Expand Down

0 comments on commit 4f432b9

Please sign in to comment.