forked from the-actions-org/workflow-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge in set-output fixes from the head repo (#2)
* Update to node16 (the-actions-org#7) * Update to Node 16 to address GH warnings * Update to node 16 on build * Update dependency actions to Node 16 support * Update to deps using Node 16 * bugfix: remove ms precision from `triggerDate` (the-actions-org#8) * bugfix: remove ms precision from `triggerDate` remove ms precision from `triggerDate` as was the meaning of this previous bug fix the-actions-org#4 * remove redundant Date.now * Provide run name optional parameter to fetch run id based on name (the-actions-org#6) * use check listforref to obtain run id * proper param for run name * Automated publish: Thu Jun 8 06:14:15 UTC 2023 d0f84d4 * chore(pr): Some adjustments after merge of PRs * Automated publish: Thu Jun 8 07:01:06 UTC 2023 928e175 * feat(logs): Retrieve and print logs of triggered workflow Upgrade all dependencies * chore(logs): Prefix imported logs * Automated publish: Fri Jun 9 06:55:17 UTC 2023 46e0c62 --------- Co-authored-by: Rui Ferreira <rui-ferreira@users.noreply.github.com> Co-authored-by: Samir Ergaibi <38135462+samirergaibi@users.noreply.github.com> Co-authored-by: Robbert van der Gugten <robbertvdg@gmail.com> Co-authored-by: Automated Publisher <actions@users.noreply.github.com> Co-authored-by: Aurélien Baudet <Aurelien.baudet@gmail.com>
- Loading branch information
1 parent
383ae01
commit 8522ca9
Showing
13 changed files
with
7,940 additions
and
3,014 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Retrieve logs | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
echo: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Echo message | ||
run: | | ||
for i in {1..500} | ||
do | ||
echo "Hello $i" | ||
sleep 0.1 | ||
done | ||
timeout: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Sleep | ||
run: sleep 1200s | ||
|
||
more-real-example: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
- name: Some command with npx | ||
run: | | ||
npx create-react-app example-app |
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
Oops, something went wrong.