From fe9db6299964f8056a87af068c65081ef07b83ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Wed, 12 Jul 2023 15:23:03 +0200 Subject: [PATCH] Remove: Drop test for release action The test is strange and can't really test a release. --- .github/workflows/test-release.yml | 56 ------------------------------ 1 file changed, 56 deletions(-) delete mode 100644 .github/workflows/test-release.yml diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml deleted file mode 100644 index 217ce6fa..00000000 --- a/.github/workflows/test-release.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Test Release Actions - -on: - push: - tags: - - "v*" - branches: - - main - paths: - - "release/**" - - "release-python/**" - - ".github/workflows/test-release.yml" - pull_request: - branches: - - main - paths: - - "release/**" - - "release-python/**" - - ".github/workflows/test-release.yml" - -jobs: - release-patch-cc: - runs-on: ubuntu-latest - name: Test Release Patch CC - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Run release patch actions - uses: ./release - with: - github-user: foo - github-user-mail: foo@bar.baz - github-user-token: bar - gpg-key: boo - gpg-passphrase: foo - gpg-fingerprint: baz - continue-on-error: true - release-patch: - runs-on: ubuntu-latest - name: Test Release Calendar changelog - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Run release patch actions - uses: ./release-python - with: - github-user: ${{ secrets.GREENBONE_BOT }} - github-user-mail: foo@bar.baz - github-user-token: bar - gpg-key: boo - gpg-passphrase: foo - gpg-fingerprint: baz - conventional-commits: false - strategy: calendar - ref: v1 - continue-on-error: true