test fix #10
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: Open PR from csa to main | |
permissions: | |
contents: write | |
pull-requests: write | |
on: | |
push: | |
workflow_run: | |
workflows: ["Daily Sync of the csa branch"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
open-pr: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Checkout csa | |
run: | | |
git fetch origin csa:csa | |
git reset --hard csa | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
branch: automation/update_main | |
base: main | |
title: "Sync csa branch with main" | |
body: | | |
This PR syncs the csa branch with the main branch. | |
**PR MUST BE MERGED WITH MERGE COMMIT - ADMIN MUST ENABLE THE OPTION** | |
token: ${{secrets.GITHUB_TOKEN}} | |
labels: changing-submodules-on-purpose | |
- name: Check if PR is already closed and reopened | |
id: check_pr | |
run: | | |
PR_NUMBER=$(gh pr list --repo ${{ github.repository }} --state open --head automation/update_main --json number --jq '.[0].number') | |
if [ -z "$PR_NUMBER" ]; then | |
echo "PR not found." | |
exit 1 | |
fi | |
LABELS=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json labels --jq '.labels[].name') | |
if echo "$LABELS" | grep -q "sl-automation-triggered"; then | |
echo "::set-output name=pr_already_closed::true" | |
else | |
echo "::set-output name=pr_already_closed::false" | |
fi | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Close and Reopen PR | |
if: steps.check_pr.outputs.pr_already_closed == 'false' | |
run: | | |
PR_NUMBER=$(gh pr list --repo ${{ github.repository }} --state open --head automation/update_main --json number --jq '.[0].number') | |
gh pr close $PR_NUMBER --repo ${{ github.repository }} | |
gh pr reopen $PR_NUMBER --repo ${{ github.repository }} | |
gh pr edit $PR_NUMBER --add-label "sl-automation-triggered" | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |