Skip to content

Commit f0bac7b

Browse files
authored
Merge pull request #793 from CROSSINGTUD/develop
Add workaround for GitHub actions bot
2 parents 0072a64 + 95215c5 commit f0bac7b

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ description: Basic build and tests for the submodules on each push and pull requ
33

44
on:
55
pull_request:
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
10+
- ready_for_review
611
workflow_dispatch:
712

813
env:

.github/workflows/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Open pull request for version update
6868
if: ${{ env.PR_EXISTS == '0' }}
6969
run: |
70-
gh pr create -B master -H version_${{ steps.versioning.outputs.version }} -t "Update CryptoAnalysis version to ${{ steps.versioning.outputs.version }}" -b "This PR was created by the version-update workflow. Please make sure to delete the branch after merging, otherwise future workflows might fail."
70+
gh pr create --draft -B master -H version_${{ steps.versioning.outputs.version }} -t "Update CryptoAnalysis version to ${{ steps.versioning.outputs.version }}" -b "This PR was created by the version-update workflow. Please make sure to delete the branch after merging, otherwise future workflows might fail."
7171
env:
7272
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7373

0 commit comments

Comments
 (0)