generated from AndreasAugustin/template
-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andy Augustin <dev@andreas-augustin.org>
- Loading branch information
1 parent
d0d70e1
commit 0000d2b
Showing
5 changed files
with
145 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: test-steps | ||
|
||
on: | ||
push: | ||
# branches: | ||
# - "!main" | ||
# pull_request: | ||
workflow_call: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-implementation-job: | ||
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 first steps | ||
uses: ./ # Uses an action in the root directory | ||
with: | ||
source_repo_path: AndreasAugustin/template.git | ||
is_dry_run: true | ||
is_force_push_pr: true | ||
steps: "prechecks,pull" | ||
|
||
- name: in between step | ||
run: | | ||
echo "I can do whatever I want" | ||
git status | ||
- name: Test action step next steps | ||
uses: ./ # Uses an action in the root directory | ||
id: test | ||
with: | ||
source_repo_path: AndreasAugustin/template.git | ||
is_dry_run: true | ||
is_force_push_pr: true | ||
steps: "commit,push,pr" | ||
|
||
- name: print output | ||
env: | ||
FORMER_OUTPUT_PR_BRANCH: ${{ steps.test.outputs.pr_branch }} | ||
run: echo "pr_branch ${FORMER_OUTPUT_PR_BRANCH}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters