diff --git a/.github/workflows/all_core_tests.yml b/.github/workflows/all_core_tests.yml index 1209dae..53181ba 100644 --- a/.github/workflows/all_core_tests.yml +++ b/.github/workflows/all_core_tests.yml @@ -5,7 +5,7 @@ on: jobs: current_python_tests: - name: Run on ${{ matrix.os }} + name: ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: diff --git a/.github/workflows/opened_pr_draft_notif.yml b/.github/workflows/opened_pr_draft_notif.yml index 5eebecd..1c8566b 100644 --- a/.github/workflows/opened_pr_draft_notif.yml +++ b/.github/workflows/opened_pr_draft_notif.yml @@ -2,17 +2,15 @@ name: 'NEW: Post Draft PR Notice' on: pull_request: - types: [opened, ready_for_review, converted_to_draft] + types: [opened] jobs: post-draft-notice: - name: Post Draft Notice + name: 'post on new non-draft PR' runs-on: ubuntu-latest if: ${{ !github.event.pull_request.draft }} steps: - - name: Print PR data payload - run: jq -n '${{ toJson(github.event.pull_request) }}' - - name: Post notification to non-draft PR + - name: Post notification to new non-draft PR run: | curl -X POST \ -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \