Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
# Execute the workflow
uses: ./.github/workflows/Metadata.yml
with:
isRelease: ${{ inputs.isRelease }}
isPrerelease: ${{ inputs.isPrerelease }}
isRelease: ${{ github.event_name == 'workflow_call' && inputs.isRelease || false }}
isPrerelease: ${{ github.event_name == 'workflow_call' && inputs.isPrerelease || false }}

# Execution session that builds the artifacts that are used for deployment
Build-Prod:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Security-Reachability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

# Sets the scopes available to the github_token injected to the GH Actions runner
permissions:
issues: read
issues: write
contents: read
pull-requests: read

Expand Down
Loading