Skip to content

Commit 6871ff4

Browse files
test fix
1 parent 150ad95 commit 6871ff4

File tree

1 file changed

+27
-14
lines changed

1 file changed

+27
-14
lines changed

.github/workflows/silabs-open-csa-pr.yaml

+27-14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ permissions:
55
pull-requests: write
66

77
on:
8+
push:
89
workflow_run:
910
workflows: ["Daily Sync of the csa branch"]
1011
types:
@@ -19,7 +20,6 @@ jobs:
1920
- uses: actions/checkout@v4
2021
with:
2122
ref: main
22-
token: ${{secrets.WORKFLOW_TOKEN}}
2323

2424
- name: Checkout csa
2525
run: |
@@ -37,18 +37,31 @@ jobs:
3737
3838
**PR MUST BE MERGED WITH MERGE COMMIT - ADMIN MUST ENABLE THE OPTION**
3939
token: ${{secrets.GITHUB_TOKEN}}
40-
branch-token: ${{secrets.WORKFLOW_TOKEN}}
4140
labels: changing-submodules-on-purpose
4241

43-
- name: Comment on Pull Request
44-
uses: actions/github-script@v7
45-
with:
46-
github-token: ${{secrets.GITHUB_TOKEN}}
47-
script: |
48-
const pr_number = context.payload.workflow_run.pull_requests[0].number;
49-
github.issues.createComment({
50-
owner: context.repo.owner,
51-
repo: context.repo.repo,
52-
issue_number: pr_number,
53-
body: "Please merge this PR using **Merge Commit**."
54-
});
42+
- name: Check if PR is already closed and reopened
43+
id: check_pr
44+
run: |
45+
PR_NUMBER=$(gh pr list --repo ${{ github.repository }} --state open --head automation/update_main --json number --jq '.[0].number')
46+
if [ -z "$PR_NUMBER" ]; then
47+
echo "PR not found."
48+
exit 1
49+
fi
50+
LABELS=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json labels --jq '.labels[].name')
51+
if echo "$LABELS" | grep -q "sl-automation-triggered"; then
52+
echo "::set-output name=pr_already_closed::true"
53+
else
54+
echo "::set-output name=pr_already_closed::false"
55+
fi
56+
env:
57+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
58+
59+
- name: Close and Reopen PR
60+
if: steps.check_pr.outputs.pr_already_closed == 'false'
61+
run: |
62+
PR_NUMBER=$(gh pr list --repo ${{ github.repository }} --state open --head automation/update_main --json number --jq '.[0].number')
63+
gh pr close $PR_NUMBER --repo ${{ github.repository }}
64+
gh pr reopen $PR_NUMBER --repo ${{ github.repository }}
65+
gh pr edit $PR_NUMBER --add-label "sl-automation-triggered"
66+
env:
67+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)