Browse Source

Merge branch 'main' into jk/05-pre

Jonathan Kelley 1 year ago
parent
commit
37b8fd0135
3 changed files with 12 additions and 12 deletions
  1. 2 2
      .github/workflows/docs.yml
  2. 8 8
      .github/workflows/main.yml
  3. 2 2
      packages/html/src/global_attributes.rs

+ 2 - 2
.github/workflows/docs.yml

@@ -2,7 +2,7 @@ name: Deploy Nightly Docs
 on:
 on:
   push:
   push:
     branches:
     branches:
-      - master
+      - main
 
 
 jobs:
 jobs:
   deploy:
   deploy:
@@ -21,7 +21,7 @@ jobs:
       - uses: Swatinem/rust-cache@v2
       - uses: Swatinem/rust-cache@v2
         with:
         with:
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
       - uses: ilammy/setup-nasm@v1
       - uses: ilammy/setup-nasm@v1
 
 
       - name: cargo doc
       - name: cargo doc

+ 8 - 8
.github/workflows/main.yml

@@ -3,7 +3,7 @@ name: Rust CI
 on:
 on:
   push:
   push:
     branches:
     branches:
-      - master
+      - main
     paths:
     paths:
       - packages/**
       - packages/**
       - examples/**
       - examples/**
@@ -17,7 +17,7 @@ on:
   pull_request:
   pull_request:
     types: [opened, synchronize, reopened, ready_for_review]
     types: [opened, synchronize, reopened, ready_for_review]
     branches:
     branches:
-      - master
+      - main
     paths:
     paths:
       - packages/**
       - packages/**
       - examples/**
       - examples/**
@@ -48,7 +48,7 @@ jobs:
       - uses: Swatinem/rust-cache@v2
       - uses: Swatinem/rust-cache@v2
         with:
         with:
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
       - uses: ilammy/setup-nasm@v1
       - uses: ilammy/setup-nasm@v1
       - run: cargo check --all --examples --tests --all-features --all-targets
       - run: cargo check --all --examples --tests --all-features --all-targets
 
 
@@ -64,7 +64,7 @@ jobs:
       - uses: Swatinem/rust-cache@v2
       - uses: Swatinem/rust-cache@v2
         with:
         with:
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
       - uses: ilammy/setup-nasm@v1
       - uses: ilammy/setup-nasm@v1
       - uses: davidB/rust-cargo-make@v1
       - uses: davidB/rust-cargo-make@v1
       - uses: browser-actions/setup-firefox@latest
       - uses: browser-actions/setup-firefox@latest
@@ -91,7 +91,7 @@ jobs:
       - uses: Swatinem/rust-cache@v2
       - uses: Swatinem/rust-cache@v2
         with:
         with:
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
       - run: cargo fmt --all -- --check
       - run: cargo fmt --all -- --check
 
 
   clippy:
   clippy:
@@ -109,7 +109,7 @@ jobs:
       - uses: Swatinem/rust-cache@v2
       - uses: Swatinem/rust-cache@v2
         with:
         with:
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
       - run: cargo clippy --workspace --examples --tests --all-features --all-targets -- -D warnings
       - run: cargo clippy --workspace --examples --tests --all-features --all-targets -- -D warnings
 
 
   playwright:
   playwright:
@@ -137,7 +137,7 @@ jobs:
       - uses: Swatinem/rust-cache@v2
       - uses: Swatinem/rust-cache@v2
         with:
         with:
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
 
 
       - name: Install dependencies
       - name: Install dependencies
         run: npm ci
         run: npm ci
@@ -230,7 +230,7 @@ jobs:
         with:
         with:
           key: "${{ matrix.platform.target }}"
           key: "${{ matrix.platform.target }}"
           cache-all-crates: "true"
           cache-all-crates: "true"
-          save-if: ${{ github.ref == 'refs/heads/master' }}
+          save-if: ${{ github.ref == 'refs/heads/main' }}
 
 
       - name: test
       - name: test
         run: |
         run: |

+ 2 - 2
packages/html/src/global_attributes.rs

@@ -2285,8 +2285,8 @@ trait_methods! {
     /// <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform-origin>
     /// <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform-origin>
     transform_origin: "transform-origin";
     transform_origin: "transform-origin";
 
 
-    /// <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/_type>
-    r#type: "_type";
+    /// <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/type>
+    r#type: "type";
 
 
     /// <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/u1>
     /// <https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/u1>
     u1: "u1";
     u1: "u1";