Skip to content

Commit

Permalink
build: request review on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Oct 15, 2024
1 parent 62b6eb1 commit 6bb58d9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
uses: eclipse-edc/Release/.github/workflows/publish-all-in-one.yaml@main
with:
version: ${{ needs.Determine-Version.outputs.VERSION }}
review-dependencies: true
secrets: inherit

Post-To-Discord:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/publish-all-in-one.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on:
required: false
default: "main"
description: "The branch which to publish. must exist in all repos!"
review-dependencies:
type: boolean
required: false
default: false
description: "If true, it will trigger IPLab review for restricted dependencies"
workflow_call:
inputs:
version:
Expand All @@ -23,6 +28,11 @@ on:
required: false
default: "main"
description: "The branch which to publish. must exist in all repos!"
review-dependencies:
type: boolean
required: false
default: false
description: "If true, it will trigger IPLab review for restricted dependencies"

# these environment variables will be read by release-setup.sh
env:
Expand All @@ -42,6 +52,12 @@ jobs:
echo "Launch release setup on branch $SOURCE_BRANCH and version $VERSION"
./release-setup.sh
- name: request review for restricted DEPENDENCIES
if: ${{ inputs.review-dependencies }}
uses: eclipse-edc/.github/.github/actions/request-dependencies-review@main
with:
gitlab-token: ${{ secrets.GITLAB_API_TOKEN }}

- name: "Display project structure"
run: ./gradlew projects

Expand Down

0 comments on commit 6bb58d9

Please sign in to comment.