From eb50c4f28d978fcd914b819d523e8da607d05b0c Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Fri, 21 Apr 2023 18:29:22 +0200 Subject: Clean up GitHub workflows (#2951) * Run Gradle wrapper checksum less often * Do not publish examples as artifacts in internal PRs --- .github/workflows/rebase.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/rebase.yml (limited to '.github/workflows/rebase.yml') diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml deleted file mode 100644 index a64526e6..00000000 --- a/.github/workflows/rebase.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Automatic Rebase - -on: - issue_comment: - types: [ created ] - -jobs: - rebase: - name: Rebase - if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') - runs-on: ubuntu-latest - steps: - - name: Checkout the latest code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Automatic Rebase - uses: cirrus-actions/rebase@1.5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file -- cgit