diff --git a/.github/actions/create-pr/action.yml b/.github/actions/create-pr/action.yml index c4b9ca4d3d9..87fde3f5266 100644 --- a/.github/actions/create-pr/action.yml +++ b/.github/actions/create-pr/action.yml @@ -75,7 +75,7 @@ runs: echo "Found existing open PR: $PR_NUMBERS" exit 0 fi - gh pr create --head "$HEAD_BRANCH" --base "$BASE_BRANCH" --title "$TITLE" --body "$BODY" --assignee ${{ github.actor }} --draft + gh pr create --head "$HEAD_BRANCH" --base "$BASE_BRANCH" --title "$TITLE" --body "$BODY" --assignee ${{ github.actor }} if [[ $? -ne 0 ]]; then echo "Failed to create new PR." exit 1 diff --git a/.github/workflows/build-storybook.yml b/.github/workflows/build-storybook.yml index 9bf5308ad71..175d1cfffbc 100644 --- a/.github/workflows/build-storybook.yml +++ b/.github/workflows/build-storybook.yml @@ -3,7 +3,7 @@ name: Build Storybook on: workflow_dispatch: pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] push: branches: - main diff --git a/.github/workflows/cli-test.yml b/.github/workflows/cli-test.yml index 851aa2b78ad..1f50bb4fd22 100644 --- a/.github/workflows/cli-test.yml +++ b/.github/workflows/cli-test.yml @@ -4,7 +4,7 @@ on: schedule: - cron: '0 0 * * *' pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] paths: - .github/workflows/cli-test.yml - extensions/ql-vscode/src/codeql-cli/** diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1851069d7aa..8e2a7bcce2d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: Build Extension on: workflow_dispatch: pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] push: branches: - main