This is an automated email from the ASF dual-hosted git repository. bthomson pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry-pxf.git
commit 3b6d93dacb78576b0c97df9610f93c2418b9b145 Author: Nikolay Antonov <[email protected]> AuthorDate: Tue Jan 20 19:29:12 2026 +0400 Add dependency-submission workflow to collect gradle dependencies --- .github/workflows/dependency-submission.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/dependency-submission.yml b/.github/workflows/dependency-submission.yml new file mode 100644 index 00000000..4f5b2b09 --- /dev/null +++ b/.github/workflows/dependency-submission.yml @@ -0,0 +1,23 @@ +name: Dependency Submission + +on: + push: + branches: [ 'main' ] + +permissions: + contents: write + +jobs: + dependency-submission: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 11 + - name: Generate and submit dependency graph + uses: gradle/actions/dependency-submission@v5 + with: + build-root-directory: server + artifact-retention-days: 5 \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
