Procházet zdrojové kódy

feature: implement covector (#668)

* feature: implement covector

* Create change-status-on-PR.yml

* Create readme.md

* action is nested

* trailing comma in config
Jacob Bolda před 5 roky
rodič
revize
d475767a14

+ 39 - 0
.changes/config.json

@@ -0,0 +1,39 @@
+{
+  "pkgManagers": {
+    "rust": {
+      "publish": false
+    },
+    "javascript": {
+      "publish": false
+    }
+  },
+  "packages": {
+    "tauri.js": {
+      "path": "./cli/tauri.js",
+      "manager": "javascript",
+      "dependencies": ["tauri"]
+    },
+    "tauri-bundler": {
+      "path": "./cli/tauri-bundler",
+      "manager": "rust"
+    },
+    "tauri": {
+      "path": "./tauri",
+      "manager": "rust",
+      "dependencies": ["tauri-api", "tauri-updater"]
+    },
+    "tauri-api": {
+      "path": "./tauri-api",
+      "manager": "rust",
+      "dependencies": ["tauri-utils"]
+    },
+    "tauri-utils": {
+      "path": "./tauri-utils",
+      "manager": "rust"
+    },
+    "tauri-updater": {
+      "path": "./tauri-updater",
+      "manager": "rust"
+    }
+  }
+}

+ 17 - 0
.changes/readme.md

@@ -0,0 +1,17 @@
+# Changes
+##### via https://github.com/jbolda/covector
+
+As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version *number*, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a `.md`, but we recommend it represents the overall change for our sanity.
+
+When you select the version bump required, you do *not* need to consider depedencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process.
+
+Use the following format:
+```md
+---
+"tauri.js": patch
+"tauri": minor
+---
+
+Change summary goes here
+
+```

+ 14 - 0
.github/workflows/change-status-on-PR.yml

@@ -0,0 +1,14 @@
+name: covector status
+on: [pull_request]
+
+jobs:
+  covector:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: covector status
+        uses: jbolda/covector/packages/action@master
+        id: covector
+        with:
+          command: 'status'