Run Scala Steward on the managed repositories #26
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: Run Scala Steward on the managed repositories | |
on: | |
workflow_dispatch: | |
inputs: | |
repository: | |
description: "Repository to update. Leave empty to update every repository managed by the GitHub App." | |
required: false | |
default: "" | |
extra-options: | |
description: | | |
Extra options to append to base `.scala-steward.conf`. For example, to instruct Scala Steward to just | |
update SBT you can set this to: `updates.allow = [{ groupId = "org.scala-sbt", artifactId = "sbt" }]` | |
to just update SBT. | |
required: false | |
default: "" | |
schedule: | |
- cron: "0 5 1,15 * *" | |
jobs: | |
get-repositories: | |
name: Select repositories to update | |
runs-on: ubuntu-latest | |
outputs: | |
repositories: ${{ steps.repositories.outputs.repositories }} | |
steps: | |
- name: Generate token | |
id: github_app | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
installation_retrieval_mode: id | |
installation_retrieval_payload: ${{ secrets.APP_INSTALLATION_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Select repositories to update | |
id: repositories | |
run: | | |
if [ "${{ github.event.inputs.repository }}" != "" ]; then | |
echo "repositories=[\"permutive-engineering/${{ github.event.inputs.repository }}\"]" >> $GITHUB_OUTPUT | |
else | |
echo "repositories=$(gh api installation/repositories -q '.repositories | map(.full_name)')" >> $GITHUB_OUTPUT | |
fi | |
env: | |
GITHUB_TOKEN: ${{ steps.github_app.outputs.token }} | |
run-scala-steward: | |
name: ${{ matrix.repo }} - Dependency update | |
runs-on: ubuntu-latest | |
needs: get-repositories | |
strategy: | |
fail-fast: false | |
matrix: | |
repo: ${{ fromJson(needs.get-repositories.outputs.repositories) }} | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Append extra options | |
run: echo "${{ github.event.inputs.extra-options }}" >> .github/.scala-steward.conf | |
- name: Launch Scala Steward on ${{ matrix.repo }} | |
uses: scala-steward-org/scala-steward-action@a9ebdaa88c3e2a98aded276e9485d7ceb2da8945 # v2.66.0 | |
with: | |
github-repository: ${{ matrix.repo }} | |
github-app-auth-only: "true" | |
github-app-id: ${{ secrets.APP_ID }} | |
github-app-installation-id: ${{ secrets.APP_INSTALLATION_ID }} | |
github-app-key: ${{ secrets.APP_PRIVATE_KEY }} |