From f6a4577b8e1bb1e06ee6780c81296c97d3483636 Mon Sep 17 00:00:00 2001 From: Felix Obenhuber Date: Tue, 9 Jul 2024 21:36:43 +0200 Subject: [PATCH] Disable weekly CI runs --- .github/workflows/weekly.yml | 40 ------------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/weekly.yml diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml deleted file mode 100644 index ec70445a2..000000000 --- a/.github/workflows/weekly.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Northstar CI (weekly) - -on: - schedule: - - cron: '31 22 * * 3' - -jobs: - clippy: - name: Clippy - runs-on: ubuntu-latest - permissions: - contents: read - security-events: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - components: clippy - override: true - - - name: Install clippy-sarif - run: cargo install clippy-sarif sarif-fmt - - - name: Run clippy - run: - cargo clippy - --all-features - --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt - continue-on-error: true - - - name: Upload analysis results to GitHub - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: rust-clippy-results.sarif - wait-for-processing: true \ No newline at end of file