diff --git a/.github/workflows/dockerfile_workflow_test.yaml b/.github/workflows/dockerfile_workflow_test.yaml index c15d2a6..305b4bb 100644 --- a/.github/workflows/dockerfile_workflow_test.yaml +++ b/.github/workflows/dockerfile_workflow_test.yaml @@ -3,7 +3,7 @@ # to build and push the Docker image to the container registries. # # The reason this workflow targets the develop branch is so that we can test the -# action in the PR. If we targeted main, we would need to merge changes into +# action in the PR. If we targeted main, we would need to merge changes in # before being able to test them. # name: Build Using Reusable Workflow diff --git a/.github/workflows/reusable_dockerfile_pipeline.yml b/.github/workflows/reusable_dockerfile_pipeline.yml index acab2db..1b8c404 100644 --- a/.github/workflows/reusable_dockerfile_pipeline.yml +++ b/.github/workflows/reusable_dockerfile_pipeline.yml @@ -206,7 +206,7 @@ jobs: steps: - name: Check run conditions id: run_check - # We only want to run when the registry is able to run on pr or if it is a merge event + # We only want to run when the registry is able to run on PR or if it is a merge event run: echo "run=${{ matrix.registry.run-on-pr == needs.prepare-env.outputs.build_for_pr || needs.prepare-env.outputs.build_for_merge == 'true'}}" >> "$GITHUB_OUTPUT" - name: Checkout