[DO NOT MERGE] Test RC provider packages for https://github.com/apache/airflow/issues/42882 #331
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: Delete RC testing branch upon PR closure | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: | |
- closed | |
jobs: | |
delete-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Verify and Delete RC testing branch | |
env: | |
branch_name: ${{ github.event.pull_request.head.ref }} | |
run: | | |
git config --global user.name "airflow-oss-bot" | |
git config --global user.email "airflow-oss-bot@astronomer.io" | |
git fetch --prune --all | |
if [[ "$branch_name" == rc-test-* ]]; then | |
git push origin --delete $branch_name | |
else | |
echo "Branch does not have the required RC testing prefix. Skipping branch deletion." | |
fi |