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: actions/github-script
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.4.0
Choose a base ref
...
head repository: actions/github-script
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.4.1
Choose a head ref
  • 10 commits
  • 15 files changed
  • 3 contributors

Commits on Mar 30, 2023

  1. Add @octokit/plugin-request-log, to produce debug output for requests

    Without this plugin, the debug setting is, effectively, meaningless as
    none of the existing plugins produce log output.
    
    The plugin writes the request options to octokit.log.debug, and response
    times as *method path - status in ...ms* to octokit.log.info.
    mjpieters committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    78f623b View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

  1. Merge pull request #358 from mjpieters/request-log-plugin

    Add @octokit/plugin-request-log, to produce debug output for requests
    DanRigby authored Apr 4, 2023
    1 Configuration menu
    Copy the full SHA
    8d76c9a View commit details
    Browse the repository at this point in the history
  2. Clean and spruce up the integration tests a bit

    - Use test-specific step ids
    - Remove unused input parameters
    - Provide clear output on what passed or failed, including
      a step summary for each passed test.
    mjpieters committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    806be26 View commit details
    Browse the repository at this point in the history
  3. Remove unused dependencies

    The @octokit/plugin- references are not actually (directly) used by
    @action/github-script and so only serve to confuse about what exact
    version of these is included in the action. The actual versions of
    these plugins are set by @action/github.
    
    Ignoring newlines, the dist/index.js file is exactly the same without
    listing these dependencies in package.json.
    mjpieters committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    a4f398e View commit details
    Browse the repository at this point in the history
  4. Fix null handling, covered by integration tests

    `core.getInput()` always returns a string, so testing for 'not null'
    is always true. This then leads to previews set to an array with
    a single empty string, breaking accept-header output.
    
    Updated eslint rules should help avoid this issue in future, and new
    integration tests verify that the github client configuration now
    reflects the intended configuration options.
    mjpieters committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    8d9f8fc View commit details
    Browse the repository at this point in the history
  5. Merge pull request #357 from mjpieters/fix_input_handling

    fix input handling
    joshmgross authored Apr 4, 2023
    1 Configuration menu
    Copy the full SHA
    f1ab577 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    eae7dc1 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #356 from mjpieters/clean_deps

    Remove unused dependencies
    joshmgross authored Apr 4, 2023
    1 Configuration menu
    Copy the full SHA
    57c10d4 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2023

  1. Default debug to current runner debug state

    When the action 'debug' input is not set, default to the current
    runner debug state. This ensures that the Octokit client request logs
    are included automatically when you re-run a job with debug enabled.
    mjpieters committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    ea954ff View commit details
    Browse the repository at this point in the history
  2. Merge pull request #363 from mjpieters/auto_debug

    Default debug to current runner debug state
    joshmgross authored Apr 5, 2023
    1 Configuration menu
    Copy the full SHA
    d7906e4 View commit details
    Browse the repository at this point in the history
Loading