Skip to content

Handle Deleted Branch 'replace_GH_username_to_PANW_usename_for_oncall' #527

Handle Deleted Branch 'replace_GH_username_to_PANW_usename_for_oncall'

Handle Deleted Branch 'replace_GH_username_to_PANW_usename_for_oncall' #527

name: Purge Branch Protection Rules
run-name: "Handle Deleted Branch '${{ github.event.ref }}'"
on:
delete:
branches:
- '*'
jobs:
purge_branch_protection_rules:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected] # disable-secrets-detection
- name: Set up Python
uses: actions/[email protected] # disable-secrets-detection
with:
python-version: '3.10'
- name: Setup Poetry
uses: Gr1N/setup-poetry@v9
- name: Install python dependencies
run: |
poetry install --with github-actions
# Override PyGithub version to include GraphQL support and bug fix
# TODO remove when https://github.com/PyGithub/PyGithub/issues/3001 is fixed
poetry run pip install "git+https://github.com/kgal-pan/PyGithub.git@fix-graphql-variables"
- name: Purge Protection Rules
env:
GITHUB_TOKEN: ${{ secrets.CONTENTBOT_GH_ADMIN_TOKEN }}
run: |
echo Purging branch protection rules
poetry run python .github/github_workflow_scripts/purge_branch_protection_rules.py
- name: Upload Log to Artifacts
uses: actions/upload-artifact@v4
with:
name: purge_branch_protection_rules_${{ github.run_id }}
path: "${{ github.workspace }}/purge_branch_protection_rules.log"