diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index a7f59a3a252..e6143996648 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -47,6 +47,7 @@ jobs: javadoc_17: runs-on: ubuntu-22.04 + needs: compile if: ${{ github.actor != 'dependabot[bot]' }} steps: - name: Checkout Repo diff --git a/.github/workflows/repolinter.yml b/.github/workflows/repolinter.yml index cfba5a89cde..f2842d9a00f 100644 --- a/.github/workflows/repolinter.yml +++ b/.github/workflows/repolinter.yml @@ -12,7 +12,5 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v4 - - name: 'Run Repolinter' - uses: newrelic/repolinter-action@v1 - with: - config_url: https://raw.githubusercontent.com/hyperledger-labs/hyperledger-community-management-tools/main/repo_structure/repolint.json + - name: Lint Repo + run: bundle exec /app/bin/repolinter.js --rulesetUrl https://raw.githubusercontent.com/hyperledger-labs/hyperledger-community-management-tools/main/repo_structure/repolint.json --format markdown diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index fc7833f7a40..1426f638a96 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -2,6 +2,7 @@ name: unit-tests on: workflow_run: workflows: [ checks ] + types: [ completed ] env: GRADLE_OPTS: "-Xmx6g -Dorg.gradle.daemon=false"