From 0e8ed24ba05bf0e534a9623fc593b2406bad8196 Mon Sep 17 00:00:00 2001 From: Michael Rapp Date: Wed, 24 Apr 2024 11:07:08 +0200 Subject: [PATCH 1/3] Fix workflow that checks for disallowed changes. --- .github/workflows/test_file_changes.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test_file_changes.yml b/.github/workflows/test_file_changes.yml index f128419f74..0a172a8bf9 100644 --- a/.github/workflows/test_file_changes.yml +++ b/.github/workflows/test_file_changes.yml @@ -35,9 +35,8 @@ jobs: fail_on_file_changes: name: Fail on disallowed file changes needs: changes - if: "!contains(github.event.head_commit.message, '[Bot]')" runs-on: ubuntu-latest steps: - name: Fail on disallowed file changes - if: ${{ needs.changes.outputs.any == 'true' }} + if: ${{ !contains(github.event.head_commit.message, '[Bot]') && needs.changes.outputs.any == 'true' }} run: exit 1 From f3ffe877a613305745d085a8dbaf53fcc25f7fc4 Mon Sep 17 00:00:00 2001 From: Michael Rapp Date: Wed, 24 Apr 2024 11:15:42 +0200 Subject: [PATCH 2/3] Remove workflow that checks for disallowed changes. --- .github/workflows/test_file_changes.yml | 42 ------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/test_file_changes.yml diff --git a/.github/workflows/test_file_changes.yml b/.github/workflows/test_file_changes.yml deleted file mode 100644 index 0a172a8bf9..0000000000 --- a/.github/workflows/test_file_changes.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Check for disallowed file changes -on: - pull_request: - types: [opened, reopened, synchronize] -jobs: - changes: - name: Detect changes - runs-on: ubuntu-latest - outputs: - any: ${{ steps.filter.outputs.any }} - steps: - - name: Look up Git repository in cache - uses: actions/cache/restore@v4 - with: - path: .git/ - key: test-file-changes-cache-git-${{ github.run_id }} - restore-keys: | - test-file-changes-cache-git - - name: Checkout - uses: actions/checkout@v4 - - name: Detect changes - uses: dorny/paths-filter@v3 - id: filter - with: - filters: | - any: - - 'VERSION' - - 'VERSION.dev' - - name: Save Git repository to cache - uses: actions/cache/save@v4 - if: success() || failure() - with: - path: .git/ - key: test-file-changes-cache-git-${{ github.run_id }} - fail_on_file_changes: - name: Fail on disallowed file changes - needs: changes - runs-on: ubuntu-latest - steps: - - name: Fail on disallowed file changes - if: ${{ !contains(github.event.head_commit.message, '[Bot]') && needs.changes.outputs.any == 'true' }} - run: exit 1 From c95c24b0f240697774a563dfc9ac3084a1273d9d Mon Sep 17 00:00:00 2001 From: michael-rapp <6638695+michael-rapp@users.noreply.github.com> Date: Wed, 24 Apr 2024 09:17:28 +0000 Subject: [PATCH 3/3] [Bot] Merge bugfix into feature branch. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f514a2f0bd..78bc1abd14 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.1 \ No newline at end of file +0.10.0