diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index e502f8019ce..a23df78ac6b 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -6,7 +6,7 @@ name: changelog on: pull_request: - types: [opened, synchronize, reopened, labeled, unlabeled] + types: [opened, ready_for_review, synchronize, reopened, labeled, unlabeled] branches: - main diff --git a/.github/workflows/contrib-tests.yml b/.github/workflows/contrib-tests.yml index f2cf42ebbe5..3a8404237e5 100644 --- a/.github/workflows/contrib-tests.yml +++ b/.github/workflows/contrib-tests.yml @@ -5,6 +5,8 @@ on: tags: - v[0-9]+.[0-9]+.[0-9]+.* pull_request: + types: [opened, ready_for_review, synchronize, reopened, labeled, unlabeled] + branches: [ main ] concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} @@ -13,6 +15,8 @@ concurrency: jobs: contrib_tests: runs-on: ubuntu-latest + if: ${{ !contains(github.event.pull_request.labels.*.name, 'Skip Contrib Tests') }} + steps: - name: Checkout Repo uses: actions/checkout@v3