From 6eeacb287dd9900063f82ca1137024791546f370 Mon Sep 17 00:00:00 2001 From: Matthew Sevey Date: Mon, 5 Feb 2024 15:41:54 -0500 Subject: [PATCH] chore: add comments to trigger PR --- .github/workflows/dockerfile_workflow_test.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/dockerfile_workflow_test.yaml b/.github/workflows/dockerfile_workflow_test.yaml index e8173a2..c15d2a6 100644 --- a/.github/workflows/dockerfile_workflow_test.yaml +++ b/.github/workflows/dockerfile_workflow_test.yaml @@ -1,6 +1,16 @@ +# +# This workflow is used to test the `reusable_dockerfile_pipeline` action used +# 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 +# before being able to test them. +# name: Build Using Reusable Workflow on: [push, pull_request] jobs: + # reusable-build tests calling the reusable_dockerfile_pipeline while + # providing a custom packageName reusable-build: permissions: contents: write @@ -10,6 +20,9 @@ jobs: dockerfile: docker-action-test/Dockerfile packageName: docker-test secrets: inherit + + # reusable-build-defaults tests calling the reusable_dockerfile_pipeline with + # the defaults reusable-build-defaults: permissions: contents: write