mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-09-15 18:57:01 +00:00
fix: allow inputs context in action defaults (#941)
Resolves forgejo/runner#939 <!--start release-notes-assistant--> <!--URL:https://code.forgejo.org/forgejo/runner--> - bug fixes - [PR](https://code.forgejo.org/forgejo/runner/pulls/941): <!--number 941 --><!--line 0 --><!--description Zml4OiBhbGxvdyBpbnB1dHMgY29udGV4dCBpbiBhY3Rpb24gZGVmYXVsdHM=-->fix: allow inputs context in action defaults<!--description--> <!--end release-notes-assistant--> Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/941 Reviewed-by: Mathieu Fenniak <mfenniak@noreply.code.forgejo.org> Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
This commit is contained in:
parent
8a7f760d3c
commit
4beb514232
2 changed files with 2 additions and 1 deletions
|
@ -172,6 +172,7 @@
|
|||
"context": [
|
||||
"forge",
|
||||
"github",
|
||||
"inputs",
|
||||
"env",
|
||||
"strategy",
|
||||
"matrix",
|
||||
|
|
|
@ -197,7 +197,7 @@ inputs:
|
|||
default: '${{ env.GITHUB_SERVER_URL }}'
|
||||
repo:
|
||||
description: 'repo description'
|
||||
default: '${{ github.repository }} ${{ vars.VARIABLE }}'
|
||||
default: '${{ github.repository }} ${{ vars.VARIABLE }} ${{ inputs.VARIABLE }}'
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue