Skip to content

Commit 086ae18

Browse files
chore(#573): add tests with real push (#577)
Signed-off-by: Andy Augustin <[email protected]>
1 parent 44e59ba commit 086ae18

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

+21
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,24 @@ jobs:
2929
env:
3030
FORMER_OUTPUT_PR_BRANCH: ${{ steps.test.outputs.pr_branch }}
3131
run: echo "pr_branch ${FORMER_OUTPUT_PR_BRANCH}"
32+
33+
test-implementation-job-no-dry-run:
34+
runs-on: ubuntu-latest
35+
permissions:
36+
contents: write
37+
pull-requests: write
38+
steps:
39+
# To use this repository's private action, you must check out the repository
40+
- name: Checkout
41+
uses: actions/checkout@v4
42+
- name: Test action step
43+
id: test
44+
uses: ./ # Uses an action in the root directory
45+
with:
46+
source_repo_path: AndreasAugustin/template.git
47+
is_dry_run: false
48+
is_force_push_pr: true
49+
- name: print output
50+
env:
51+
FORMER_OUTPUT_PR_BRANCH: ${{ steps.test.outputs.pr_branch }}
52+
run: echo "pr_branch ${FORMER_OUTPUT_PR_BRANCH}"

0 commit comments

Comments
 (0)