Skip to content

GCP - Expandr-6261 #13375

GCP - Expandr-6261

GCP - Expandr-6261 #13375

name: Sync contributor base branch on change
on:
pull_request_target:
types:
- edited
- synchronize
branches:
- 'contrib/**'
permissions:
contents: read
jobs:
sync_contributor_base_branch:
runs-on: ubuntu-latest
if: github.repository == 'demisto/content' && github.event.pull_request.head.repo.fork == true && contains(github.head_ref, 'xsoar-bot-contrib-ContributionTestPack') == false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Setup Poetry
uses: Gr1N/setup-poetry@v8
- name: Install Python Dependencies
run: |
poetry install --with ci
- name: Sync Base Branch to Master
env:
CONTENTBOT_GH_ADMIN_TOKEN: ${{ secrets.CONTENTBOT_GH_ADMIN_TOKEN }}
run: |
echo "Updating contribution base branch (contrib/*)"
cd Utils/github_workflow_scripts
poetry run ./sync_contrib_base.py --branch_name ${{ github.event.pull_request.base.ref }}
echo "Finished updating base branch"