add 2024 to copyright (#117) #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Link Validator | |
permissions: {} | |
on: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 6 * * 1' | |
jobs: | |
validate-links: | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'apache/incubator-pekko-persistence-cassandra' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout GitHub merge | |
if: github.event.pull_request | |
run: |- | |
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch | |
git checkout scratch | |
- name: Setup Java 8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: Setup Coursier | |
uses: coursier/[email protected] | |
# assign an arbitrary version number so that scripts/link-validator.conf has a predictable set of links to work with | |
- name: Create the Pekko site | |
run: sbt "set ThisBuild / version := \"1.0.0\"; unidoc; docs/paradox" | |
- name: Run Link Validator | |
run: cs launch net.runne::site-link-validator:0.2.2 -- scripts/link-validator.conf |