Skip to content

Commit

Permalink
add missing outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Dec 12, 2024
1 parent 8aa56c8 commit e0396f9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ As seen above, we have a single example step. Perhaps you would actually use a r
| `fork_label` | The API label field returned for the fork |
| `fork_checkout` | The console command presented in the GitHub UI to checkout a given fork locally |
| `fork_full_name` | The full name of the fork in "org/repo" format |
| `sha` | The commit sha if being used in the context of a pull request |
| `ref` | The ref if being used in the context of a pull request |

## Allowlist 👩‍🔬

Expand Down
8 changes: 8 additions & 0 deletions __tests__/schemas/action.schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,14 @@ outputs:
description:
type: string
required: true
ref:
description:
type: string
required: true
sha:
description:
type: string
required: true
initial_reaction_id:
description:
type: string
Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ outputs:
description: 'The console command presented in the GitHub UI to checkout a given fork locally'
fork_full_name:
description: 'The full name of the fork in "org/repo" format'
sha:
description: 'The commit sha if being used in the context of a pull request'
ref:
description: 'The ref if being used in the context of a pull request'
runs:
using: "node20"
main: "dist/index.js"
Expand Down

0 comments on commit e0396f9

Please sign in to comment.