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: readthedocs/actions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4
Choose a base ref
...
head repository: readthedocs/actions
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 25, 2025

  1. Pass data to action

    ericholscher committed Feb 25, 2025

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    pimuzzo Simone Locci
    Copy the full SHA
    b8bba14 View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 preview/action.yaml
5 changes: 5 additions & 0 deletions preview/action.yaml
Original file line number Diff line number Diff line change
@@ -28,6 +28,10 @@ inputs:
description: "Site is a single version project, so link to the top level."
default: 'false'
required: false
single-language:
description: "Site is a single language project, so don't include a language in the link."
default: 'false'
required: false

runs:
using: "composite"
@@ -47,6 +51,7 @@ runs:
"message-template": `${{ inputs.message-template }}`,
"platform": "${{ inputs.platform }}",
"single-version": "${{ inputs.single-version }}",
"single-language": "${{ inputs.single-language }}",
}
const script = require("./preview/scripts/edit-description.js");
await script({inputs, github, context});