@@ -5,6 +5,7 @@ permissions:
5
5
pull-requests : write
6
6
7
7
on :
8
+ push :
8
9
workflow_run :
9
10
workflows : ["Daily Sync of the csa branch"]
10
11
types :
19
20
- uses : actions/checkout@v4
20
21
with :
21
22
ref : main
22
- token : ${{secrets.WORKFLOW_TOKEN}}
23
23
24
24
- name : Checkout csa
25
25
run : |
@@ -37,18 +37,31 @@ jobs:
37
37
38
38
**PR MUST BE MERGED WITH MERGE COMMIT - ADMIN MUST ENABLE THE OPTION**
39
39
token : ${{secrets.GITHUB_TOKEN}}
40
- branch-token : ${{secrets.WORKFLOW_TOKEN}}
41
40
labels : changing-submodules-on-purpose
42
41
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