From 257431952bc2fdb01a6c173cd2169d1f85b85fba Mon Sep 17 00:00:00 2001 From: Jonathan Sick Date: Fri, 2 Aug 2024 15:49:08 -0400 Subject: [PATCH] Drop use of dependencies workflow This will not be handled manually any time noteburst is updated. --- .github/workflows/dependencies.yaml | 33 ----------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/dependencies.yaml diff --git a/.github/workflows/dependencies.yaml b/.github/workflows/dependencies.yaml deleted file mode 100644 index 3c54a1b..0000000 --- a/.github/workflows/dependencies.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Dependency Update - -"on": - schedule: - - cron: "0 12 * * 1" - workflow_dispatch: {} - -jobs: - update: - runs-on: ubuntu-latest - timeout-minutes: 10 - - steps: - - uses: actions/checkout@v4 - - - name: Run neophile - uses: lsst-sqre/run-neophile@v1 - with: - python-version: "3.12" - mode: pr - types: pre-commit - app-id: ${{ secrets.NEOPHILE_APP_ID }} - app-secret: ${{ secrets.NEOPHILE_PRIVATE_KEY }} - - - name: Report status - if: always() - uses: ravsamhq/notify-slack-action@v2 - with: - status: ${{ job.status }} - notify_when: "failure" - notification_title: "Periodic dependency update for {repo} failed" - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_ALERT_WEBHOOK }}