mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-22 06:45:03 +01:00
feat: log parsed command data in json logger (#103)
* feat: log parsed command data in json logger * add logging info to other commands as well
This commit is contained in:
27
pkg/runner/testdata/stepsummary/push.yml
vendored
Normal file
27
pkg/runner/testdata/stepsummary/push.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Step Summary Example
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
create_summary:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# GITHUB_STEP_SUMMARY test
|
||||
- name: Create Step Summary
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const summary = `
|
||||
## Workflow Summary
|
||||
- **Repository**: ${context.repo.owner}/${context.repo.repo}
|
||||
- **Branch**: ${context.ref}
|
||||
- **Commit SHA**: ${context.sha}
|
||||
- **Event**: ${context.eventName}
|
||||
`;
|
||||
console.log('Summary:', summary);
|
||||
await core.summary.addRaw(summary);
|
||||
await core.summary.write();
|
||||
github-token: none
|
||||
Reference in New Issue
Block a user