From 3a5e1c5eeeaa02a85eb61faf29cdf99e920a76f9 Mon Sep 17 00:00:00 2001 From: Hans Ott Date: Tue, 24 Mar 2026 09:27:00 +0100 Subject: [PATCH] Cleanup workflows --- .github/workflows/rust.yml | 34 --------------------------------- .github/workflows/stale.yml | 38 ------------------------------------- 2 files changed, 72 deletions(-) delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index dc7757f6d9..112aeee515 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -69,37 +69,3 @@ jobs: - name: Test run: cargo test --all-features - test-coverage: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Rust Toolchain - uses: ./.github/actions/setup-builder - with: - rust-version: stable - - name: Install Tarpaulin - uses: actions-rs/install@9da1d2adcfe5e7c16992e8242ca33a56b6d9b101 # v0.1 - with: - crate: cargo-tarpaulin - version: 0.14.2 - use-tool-cache: true - - name: Coverage - run: cargo tarpaulin -o Lcov --output-dir ./coverage - - name: Coveralls - uses: coverallsapp/github-action@09b709cf6a16e30b0808ba050c7a6e8a5ef13f8d # master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - - publish-crate: - if: startsWith(github.ref, 'refs/tags/v0') - runs-on: ubuntu-latest - needs: [test] - steps: - - uses: actions/checkout@v4 - - name: Setup Rust Toolchain - uses: ./.github/actions/setup-builder - - name: Publish - shell: bash - run: | - cargo publish --token ${{ secrets.CRATES_TOKEN }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 2312526824..0000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,38 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -name: "Close stale PRs" -on: - schedule: - - cron: "30 1 * * *" - -jobs: - close-stale-prs: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/stale@v9 - with: - stale-pr-message: "Thank you for your contribution. Unfortunately, this pull request is stale because it has been open 60 days with no activity. Please remove the stale label or comment or this will be closed in 7 days." - days-before-pr-stale: 60 - days-before-pr-close: 7 - # do not close stale issues - days-before-issue-stale: -1 - days-before-issue-close: -1 - repo-token: ${{ secrets.GITHUB_TOKEN }}