Commit 086ae18 1 parent 44e59ba commit 086ae18 Copy full SHA for 086ae18
File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 29
29
env :
30
30
FORMER_OUTPUT_PR_BRANCH : ${{ steps.test.outputs.pr_branch }}
31
31
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}"
You can’t perform that action at this time.
0 commit comments