Use 3.9 in airflow tests #3205
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release notes updated | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
release_notes_updated: | |
name: Release Notes Updated | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Debug PR type | |
run: | | |
if [[ $(expr match "${{ github.event.pull_request.head.ref }}" "release_v[0-9.]\+") -gt 0 ]]; then | |
echo This is a release PR; | |
elif [[ $(expr match "${{ github.event.pull_request.head.ref }}" "latest-dep-update-[a-zA-Z0-9]*") -gt 0 ]]; then | |
echo This is a latest dependency update PR; | |
elif [[ $(expr match "${{ github.event.pull_request.head.ref }}" "min-dep-update-[a-zA-Z0-9]*") -gt 0 ]]; then | |
echo This is a minimum dependency update PR; | |
else | |
echo This is a regular PR; | |
fi | |
echo "PR #: ${{ github.event.number }}" | |
- name: Release notes added | |
run: | | |
if [[ $(expr match "${{ github.event.pull_request.head.ref }}" "release_v[0-9.]\+") -gt 0 ]]; then | |
exit 0; | |
elif [[ $(expr match "${{ github.event.pull_request.head.ref }}" "latest-dep-update-[a-zA-Z0-9]*") -gt 0 ]]; then | |
exit 0; | |
elif [[ $(expr match "${{ github.event.pull_request.head.ref }}" "min-dep-update-[a-zA-Z0-9]*") -gt 0 ]]; then | |
exit 0; | |
fi | |
cat docs/source/release_notes.rst | grep ":pr:\`${{ github.event.number }}\`" |