Skip to content

Commit 4eada8d

Browse files
authored
Merge branch 'main' into dependabot/github_actions/masci/datadog-2.0.1
2 parents 92db2b5 + 2af1744 commit 4eada8d

142 files changed

Lines changed: 1478 additions & 856 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/cold-lions-listen.md

Lines changed: 5 additions & 0 deletions

.changeset/fast-pugs-camp.md

Lines changed: 5 additions & 0 deletions

.changeset/gold-humans-tap.md

Lines changed: 5 additions & 0 deletions

.changeset/swift-ads-matter.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 59 additions & 0 deletions

.github/skills/feature-flags/SKILL.md

Lines changed: 0 additions & 8 deletions

.github/workflows/deploy_preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- name: Deploy to GitHub Pages
6464
id: deployment
65-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e
65+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128
6666
with:
6767
preview: true
6868

.github/workflows/deploy_preview_forks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ jobs:
6262
steps:
6363
- name: Deploy to GitHub Pages
6464
id: deployment
65-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e
65+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128
6666
with:
6767
preview: true

.github/workflows/lock-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,10 @@ jobs:
8282
run: |
8383
PR_NUMBERS=$(gh pr list -L 100 -R primer/react --state open --json number,baseRefName,autoMergeRequest,reviewDecision -q '.[] | select(.autoMergeRequest != null) | select(.baseRefName == "main") | select(.reviewDecision == "APPROVED") | .number')
8484
if [ -n "$PR_NUMBERS" ]; then
85-
echo "Updating $PR_NUMBERS"
85+
echo "Re-enabling auto-merge on $PR_NUMBERS"
8686
for pr in $PR_NUMBERS; do
87-
gh pr update-branch -R primer/react "$pr" || echo "Warning: failed to update PR #$pr (likely has conflicts)"
87+
gh pr merge "$pr" -R primer/react --disable-auto || echo "Warning: failed to disable auto-merge on PR #$pr"
88+
gh pr merge "$pr" -R primer/react --auto --squash || echo "Warning: failed to enable auto-merge on PR #$pr"
8889
done
8990
else
9091
echo "No PRs to update."

0 commit comments

Comments
 (0)