We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f67788f commit d40fb6eCopy full SHA for d40fb6e
.github/actions/lbox-matrix/index.js
@@ -26838,9 +26838,12 @@ try {
26838
},
26839
];
26840
const testMatrix = [];
26841
+ const excludeRegex = /lbox-example/;
26842
+
26843
const packages = files.map(file => {
26844
return file.split('/')[1];
- });
26845
+ }).filter(pkg => pkg !== null && !excludeRegex.test(pkg));
26846
26847
const uniquePackages = [... new Set(packages)];
26848
uniquePackages.forEach(package => {
26849
startingMatrix.forEach(matrixItem => {
.github/workflows/lbox-publish.yml
@@ -54,7 +54,6 @@ jobs:
54
steps:
55
- uses: actions/checkout@v4
56
with:
57
- # ref: ${{ inputs.tag }}
58
ref: ${{ inputs.tag }}
59
- name: Install the latest version of rye
60
uses: eifinger/setup-rye@v2
0 commit comments