From 364fec7494ccec0e7ab5d3f6ff202daf784386d5 Mon Sep 17 00:00:00 2001 From: Andy Augustin Date: Tue, 15 Oct 2024 22:47:28 +0200 Subject: [PATCH] chore(#573): add tests with real push Signed-off-by: Andy Augustin --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f604715..194c611 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,3 +29,24 @@ jobs: env: FORMER_OUTPUT_PR_BRANCH: ${{ steps.test.outputs.pr_branch }} run: echo "pr_branch ${FORMER_OUTPUT_PR_BRANCH}" + + test-implementation-job-no-dry-run: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + # To use this repository's private action, you must check out the repository + - name: Checkout + uses: actions/checkout@v4 + - name: Test action step + id: test + uses: ./ # Uses an action in the root directory + with: + source_repo_path: AndreasAugustin/template.git + is_dry_run: false + is_force_push_pr: true + - name: print output + env: + FORMER_OUTPUT_PR_BRANCH: ${{ steps.test.outputs.pr_branch }} + run: echo "pr_branch ${FORMER_OUTPUT_PR_BRANCH}"