We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdb0042 commit d3bfe55Copy full SHA for d3bfe55
1 file changed
.github/workflows/sync_latest_angle.yml
@@ -0,0 +1,24 @@
1
+name: Sync latest ANGLE
2
+on:
3
+ workflow_dispatch:
4
+jobs:
5
+ Sync_latest_ANGLE:
6
+ runs-on: macos-latest
7
+ steps:
8
+ - name: Checkout repository
9
+ uses: actions/checkout@v5
10
+ with:
11
+ fetch-depth: 0
12
+
13
+ - name: Configure Git user
14
+ run: |
15
+ git config user.name "github-actions[bot]"
16
+ git config user.email "github-actions[bot]@users.noreply.github.com"
17
18
+ - name: Sync latest ANGLE
19
20
+ git remote add upstream https://github.com/google/angle.git
21
+ git fetch upstream main
22
23
+ git merge upstream/main -m "Merge remote-tracking branch 'upstream/main' into metal-freeze"
24
+ git push
0 commit comments