-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
875dfa4
commit 81ad208
Showing
1 changed file
with
6 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,13 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Log start time | ||
run: echo "Workflow started at: $(date)" | ||
- name: Get branch name | ||
id: branch-name | ||
uses: tj-actions/[email protected] | ||
- name: Log branch name | ||
run: echo "Branch name: ${{ steps.branch-name.outputs.current_branch }}" | ||
- name: Wait for Tests Results | ||
uses: convictional/[email protected] | ||
with: | ||
|
@@ -32,3 +36,5 @@ jobs: | |
propagate_failure: true | ||
trigger_workflow: true | ||
wait_workflow: true | ||
- name: Log workflow end | ||
run: echo "Workflow ended at: $(date)" |