From dc9bcb45c530c4e5ca73f9bfb0f3ef82d2728429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois=20Monniot?= Date: Sun, 26 Nov 2023 08:57:33 -0800 Subject: [PATCH] Add Scala Steward --- .github/workflows/scala-steward.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/scala-steward.yml diff --git a/.github/workflows/scala-steward.yml b/.github/workflows/scala-steward.yml new file mode 100644 index 0000000..37b037d --- /dev/null +++ b/.github/workflows/scala-steward.yml @@ -0,0 +1,22 @@ +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * 0' + +name: Launch Scala Steward + +jobs: + scala-steward: + runs-on: ubuntu-22.04 + name: Launch Scala Steward + steps: + - name: Launch Scala Steward + uses: scala-steward-org/scala-steward-action@v2 + with: + # Credentials + github-app-id: ${{ secrets.APP_ID }} + github-app-installation-id: ${{ secrets.APP_INSTALLATION_ID }} + github-app-key: ${{ secrets.APP_PRIVATE_KEY }} + + # Only update the current repository + github-app-auth-only: 'true'