From 12659af9fcc975fc9bce582ef701bcf811fa4de5 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Tue, 29 Nov 2022 12:16:29 +0100 Subject: [PATCH] chore(ci): remove local steward We now have an org-wide one we can use at `scalacenter/steward`. --- .github/workflows/scala-steward.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/scala-steward.yml diff --git a/.github/workflows/scala-steward.yml b/.github/workflows/scala-steward.yml deleted file mode 100644 index d21f2da..0000000 --- a/.github/workflows/scala-steward.yml +++ /dev/null @@ -1,24 +0,0 @@ -# This workflow will launch at 00:00 every Sunday -on: - schedule: - - cron: '0 0 * * 0' - workflow_dispatch: - -name: Launch Scala Steward - -jobs: - scala-steward: - runs-on: ubuntu-latest - name: Launch Scala Steward - steps: - - name: Generate token - id: generate-token - uses: tibdex/github-app-token@v1 - with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} - - - name: Launch Scala Steward - uses: scala-steward-org/scala-steward-action@v2 - with: - github-token: ${{ steps.generate-token.outputs.token }}