@shakerquiz/url 0.0.39 → 0.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,54 @@
1
+ name: Bump @shakerquiz/* packages
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ utilities:
7
+ type: boolean
8
+ description: "@shakerquiz/utilities"
9
+ required: false
10
+ default: false
11
+
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
15
+
16
+ jobs:
17
+ bump:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+
22
+ - uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 24
25
+
26
+ - name: Create branch
27
+ run: |
28
+ BRANCH="chore/bump-shakerquiz-$(date +%Y%m%d-%H%M%S)"
29
+ echo "BRANCH=$BRANCH" >> "$GITHUB_ENV"
30
+ git checkout -b "$BRANCH"
31
+
32
+ - name: "@shakerquiz/utilities"
33
+ if: ${{ inputs.utilities }}
34
+ run: npm i @shakerquiz/utilities@aquamarine --save-exact --prefer-online
35
+
36
+ - name: Commit changes
37
+ run: |
38
+ git config user.name "github-actions[bot]"
39
+ git config user.email "github-actions[bot]@users.noreply.github.com"
40
+ git add package.json package-lock.json
41
+ git commit -m "chore: bump @shakerquiz packages" || true
42
+
43
+ - name: Push branch
44
+ run: |
45
+ git push -u origin "$BRANCH"
46
+
47
+ - name: Open PR
48
+ env:
49
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50
+ run: |
51
+ gh pr create \
52
+ --title "chore: bump @shakerquiz packages" \
53
+ --body "Automated dependency bump via workflow_dispatch." \
54
+ --head "$BRANCH" || true
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/url",
4
- "version": "0.0.39",
4
+ "version": "0.0.41",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -31,7 +31,7 @@
31
31
  "./vkma": "./source/vkma/index.js"
32
32
  },
33
33
  "dependencies": {
34
- "@shakerquiz/utilities": "4.0.2"
34
+ "@shakerquiz/utilities": "4.0.3"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/bun": "1.3.6",