Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github/local-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1
Choose a base ref
...
head repository: github/local-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.0
Choose a head ref
  • 4 commits
  • 8 files changed
  • 1 contributor

Commits on Apr 17, 2025

  1. Configuration menu
    Copy the full SHA
    8aed6d5 View commit details
    Browse the repository at this point in the history
  2. Make var name less ambiguous

    ncalteen committed Apr 17, 2025
    Configuration menu
    Copy the full SHA
    45586f2 View commit details
    Browse the repository at this point in the history
  3. Set concurrency

    ncalteen committed Apr 17, 2025
    Configuration menu
    Copy the full SHA
    3921b8f View commit details
    Browse the repository at this point in the history
  4. Log action outputs as a table (#180)

    This PR adds some additional logging at the end of the local action run.
    If any outputs were created via the `setOutput` method of
    `@actions/core`, they will be logged in a table following the completion
    of the run.
    
    ```plain
    ================================================================================
                                     Action Outputs
    ================================================================================
    
    ┌─────────┬────────────┬─────────────────────────────────────────────┐
    │ (index) │   Output   │                    Value                    │
    ├─────────┼────────────┼─────────────────────────────────────────────┤
    │    0    │   'time'   │ '15:14:47 GMT-0400 (Eastern Daylight Time)' │
    │    1    │ 'someJSON' │           '{"msg":"hello world"}'           │
    └─────────┴────────────┴─────────────────────────────────────────────┘
    ```
    
    If no outputs were set, a relevant message will appear.
    
    ```plain
    ================================================================================
                                     Action Outputs
    ================================================================================
    
    No outputs were set!
    ```
    
    The output logic attempts to stringify any value passed to the
    `setOutput` function.
    ncalteen authored Apr 17, 2025
    Configuration menu
    Copy the full SHA
    5bfe150 View commit details
    Browse the repository at this point in the history
Loading