This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch link-validator-job in repository https://gitbox.apache.org/repos/asf/incubator-pekko-connectors-kafka.git
commit b5716e7937aaaae27819a322771937bfacbe770c Author: PJ Fanning <[email protected]> AuthorDate: Sun Feb 5 10:28:24 2023 +0100 enable some of link-validator job --- .github/workflows/link-validator.yml | 60 ++++++++++++++++++------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/link-validator.yml b/.github/workflows/link-validator.yml index ba6ec609..eebe1db5 100644 --- a/.github/workflows/link-validator.yml +++ b/.github/workflows/link-validator.yml @@ -1,36 +1,36 @@ # TODO: Fix after documentation updates -#name: Link Validator -# -#on: -# pull_request: +name: Link Validator + +on: + pull_request: ## schedule: ## - cron: '0 6 * * 1' -# -#jobs: -# validate-links: -# runs-on: ubuntu-latest -# steps: -# - name: Checkout -# uses: actions/checkout@v2 -# with: -# # See https://github.com/actions/checkout/issues/299#issuecomment-677674415 -# ref: ${{ github.event.pull_request.head.sha }} -# fetch-depth: 100 -# -# # temporarily disable git tag fetch (it fails because there are no tags) -# #- name: Fetch tags -# # run: git fetch --depth=100 origin +refs/tags/*:refs/tags/* -# -# - name: Set up JDK 11 -# uses: olafurpg/setup-scala@v13 -# with: -# java-version: [email protected] -# -# - name: Cache Coursier cache -# uses: coursier/cache-action@v6 -# -# - name: sbt site -# run: sbt docs/makeSite + +jobs: + validate-links: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + # See https://github.com/actions/checkout/issues/299#issuecomment-677674415 + ref: ${{ github.event.pull_request.head.sha }} + fetch-depth: 100 + + # temporarily disable git tag fetch (it fails because there are no tags) + #- name: Fetch tags + # run: git fetch --depth=100 origin +refs/tags/*:refs/tags/* + + - name: Set up JDK 11 + uses: olafurpg/setup-scala@v13 + with: + java-version: [email protected] + + - name: Cache Coursier cache + uses: coursier/cache-action@v6 + + - name: sbt site + run: sbt docs/makeSite # # - name: Install Coursier command line tool # run: curl -fLo cs https://git.io/coursier-cli-linux && chmod +x cs && ./cs --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
