We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 504e2a5 commit 42de6beCopy full SHA for 42de6be
1 file changed
.github/workflows/update-dependencies.yml
@@ -1,3 +1,19 @@
1
+# This workflow updates all dependencies to their latest versions
2
+#
3
+# It performs the following steps:
4
+# 1. Removes the yarn.lock file
5
+# 2. Updates all dependencies in package.json to use wildcard "*" versions
6
+# 3. Runs yarn install to generate a new lock file with latest versions
7
+# 4. Commits and pushes the changes to the main branch
8
9
+# To run this workflow:
10
+# 1. Go to Actions tab in the repository
11
+# 2. Select "Update Dependencies" workflow
12
+# 3. Click "Run workflow"
13
+# 4. Optionally customize the commit message
14
15
+# Note: This requires write permissions to the repository
16
+
17
name: Update Dependencies
18
19
on:
0 commit comments