-
Notifications
You must be signed in to change notification settings - Fork 5
229 lines (203 loc) · 9.2 KB
/
Copy pathdeploy-merged-pr.yml
File metadata and controls
229 lines (203 loc) · 9.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
name: Merge Contribution to Internal
on:
pull_request_review:
types: [submitted]
permissions:
contents: read
pull-requests: read
checks: read
actions: read
jobs:
check-file-changes:
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
SOURCE_REPO: ${{ github.repository }}
outputs:
should_sync: ${{ steps.filter.outputs.should_sync }}
steps:
- name: Check Changed File Paths
id: filter
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
EXCLUDED_PATHS=(
".github/workflows/"
)
CHANGED_FILES=$(gh pr view $PR_NUMBER --json files --repo $SOURCE_REPO --jq '[.files[].path]')
EXCLUDE_FILTER=$(printf '"%s",' "${EXCLUDED_PATHS[@]}")
EXCLUDE_FILTER="[${EXCLUDE_FILTER%,}]"
NON_WORKFLOW_CHANGES=$(echo "$CHANGED_FILES" | jq --argjson exclude "$EXCLUDE_FILTER" '[.[] | select(. as $f | $exclude | any(. as $p | $f | startswith($p)) | not)] | length')
if [ "$NON_WORKFLOW_CHANGES" -gt 0 ]; then
echo "PR contains changes outside filtered paths — proceeding."
echo "should_sync=true" >> $GITHUB_OUTPUT
else
echo "All changes are under filtered paths — skipping workflow."
echo "should_sync=false" >> $GITHUB_OUTPUT
fi
check-merge-state:
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
SOURCE_REPO: ${{ github.repository }}
outputs:
checks_passed: ${{ steps.verify_checks.outputs.checks_passed }}
steps:
- name: Wait for Status Checks and Verify
id: verify_checks
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
MAX_ATTEMPTS=120 # 120 attempts * 30 seconds = 60 minutes max
ATTEMPT=0
while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do
echo "Checking status checks (attempt $((ATTEMPT + 1))/$MAX_ATTEMPTS)..."
# Get PR status checks
STATUS_JSON=$(gh pr view $PR_NUMBER --json statusCheckRollup --repo $SOURCE_REPO)
# Filter for CheckRun entries only and not this current job
CHECK_RUNS=$(echo "$STATUS_JSON" | jq '[.statusCheckRollup[] | select(.__typename == "CheckRun") | select(.name != "check-merge-state" and .name != "dispatch-to-internal")]')
# Check if all checks are completed
INCOMPLETE_COUNT=$(echo "$CHECK_RUNS" | jq '[.[] | select(.status != "COMPLETED")] | length')
if [ "$INCOMPLETE_COUNT" -eq 0 ]; then
echo "All checks are completed!"
# Check conclusions - must be SUCCESS, NEUTRAL, or SKIPPED
FAILED_CHECKS=$(echo "$CHECK_RUNS" | jq '[.[] | select(.conclusion != "SUCCESS" and .conclusion != "NEUTRAL" and .conclusion != "SKIPPED")]')
FAILED_COUNT=$(echo "$FAILED_CHECKS" | jq 'length')
if [ "$FAILED_COUNT" -eq 0 ]; then
echo "All checks passed with acceptable conclusions!"
echo "checks_passed=true" >> $GITHUB_OUTPUT
break
else
echo "Some checks failed:"
echo "$FAILED_CHECKS" | jq -r '.[] | " - \(.name): \(.conclusion)"'
echo "checks_passed=false" >> $GITHUB_OUTPUT
exit 1
fi
else
echo "$INCOMPLETE_COUNT checks still running. Waiting 30 seconds..."
ATTEMPT=$((ATTEMPT + 1))
if [ $ATTEMPT -lt $MAX_ATTEMPTS ]; then
sleep 30
fi
fi
done
if [ $ATTEMPT -eq $MAX_ATTEMPTS ]; then
echo "Timed out waiting for checks to complete"
echo "checks_passed=false" >> $GITHUB_OUTPUT
exit 1
fi
# OSS App
- name: Generate GitHub App Token
id: pr_app_token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3
with:
app-id: ${{ vars.WELLARCHITECTED_OSS_APP_ID }}
private-key: ${{ secrets.WELLARCHITECTED_OSS_APP_PRIVATE_KEY }}
owner: github
repositories: |
github-well-architected
permission-pull-requests: write
permission-contents: write
- name: Enable Auto-Merge
if: steps.verify_checks.outputs.checks_passed == 'true'
env:
GH_TOKEN: ${{ steps.pr_app_token.outputs.token }}
run: |
echo "Enabling auto-merge for PR #$PR_NUMBER..."
gh pr merge $PR_NUMBER --auto --squash --repo $SOURCE_REPO
echo "Auto-merge enabled successfully!"
dispatch-to-internal:
needs: [check-file-changes, check-merge-state]
if: needs.check-merge-state.outputs.checks_passed == 'true' && needs.check-file-changes.outputs.should_sync == 'true' && github.event.review.state == 'approved'
runs-on: ubuntu-latest
env:
SOURCE_REPO: github/github-well-architected
TARGET_REPO: github/github-well-architected-internal
PR_HEAD_BRANCH: ${{ github.event.pull_request.head.ref }}
PR_NUMBER: ${{ github.event.pull_request.number }}
ENVIRONMENT: staging
steps:
# OSS App
- name: Generate GitHub App Token
id: dispatch_app_token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3
with:
app-id: ${{ vars.WELLARCHITECTED_OSS_APP_ID }}
private-key: ${{ secrets.WELLARCHITECTED_OSS_APP_PRIVATE_KEY }}
owner: github
repositories: |
github-well-architected
github-well-architected-internal
permission-deployments: write
permission-contents: write
- name: Create deployment
id: create_deployment
env:
GH_TOKEN: ${{ steps.dispatch_app_token.outputs.token }}
run: |
################################################################
# Check for existing deployments
# If found, delete the latest one to avoid outdated deployments
EXISTING_DEPLOYMENT_LATEST=$(gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
"/repos/$SOURCE_REPO/deployments?ref=$PR_HEAD_BRANCH&environment=$ENVIRONMENT" \
--jq '[.[] | select(.task == "deploy")] | sort_by(.created_at) | reverse | .[0].id // empty')
if [ -n "$EXISTING_DEPLOYMENT_LATEST" ] && [ "$EXISTING_DEPLOYMENT_LATEST" != "null" ]; then
echo "Found existing deployment with ID: $EXISTING_DEPLOYMENT_LATEST"
echo "existing_deployment_id=$EXISTING_DEPLOYMENT_LATEST" >> $GITHUB_OUTPUT
# Delete existing deployment
gh api \
--method DELETE \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/$SOURCE_REPO/deployments/$EXISTING_DEPLOYMENT_LATEST
fi
################################################################
# Create new deployment
DEPLOYMENT_RESPONSE=$(gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/$SOURCE_REPO/deployments \
--input - <<-EOF
{
"ref": "$PR_HEAD_BRANCH",
"environment": "$ENVIRONMENT",
"description": "Deploy requested from PR $PR_NUMBER (branch: $PR_HEAD_BRANCH)",
"auto_merge": false,
"required_contexts": []
}
EOF
)
DEPLOYMENT_ID=$(echo "$DEPLOYMENT_RESPONSE" | jq -r '.id')
echo "deployment_id=$DEPLOYMENT_ID" >> $GITHUB_OUTPUT
echo "Created new deployment with ID: $DEPLOYMENT_ID"
- name: Update Deployment Status
env:
GH_TOKEN: ${{ steps.dispatch_app_token.outputs.token }}
NEW_DEPLOYMENT_ID: ${{ steps.create_deployment.outputs.deployment_id }}
EXISTING_DEPLOYMENT_LATEST: ${{ steps.create_deployment.outputs.existing_deployment_id }}
run: |
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/$SOURCE_REPO/deployments/$NEW_DEPLOYMENT_ID/statuses \
-f "state=in_progress" \
-f "description=Deployment dispatched to internal repository for processing."
- name: Repository Dispatch to Internal Repo
env:
GH_TOKEN: ${{ steps.dispatch_app_token.outputs.token }}
run: |
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/$TARGET_REPO/dispatches \
-f 'event_type=opensource-sync-to-publish' \
-f "client_payload[pr_url]=${{ github.event.pull_request.html_url }}" \
-f "client_payload[pr_number]=$PR_NUMBER" \
-f "client_payload[head_ref]=$PR_HEAD_BRANCH" \