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.
2 parents c61bc22 + 39d9823 commit 2fd4ddcCopy full SHA for 2fd4ddc
.gitattributes
@@ -0,0 +1,2 @@
1
+.circleci export-ignore
2
+node_modules export-ignore
.github/workflows/plugin-build.yml
@@ -42,6 +42,8 @@ jobs:
42
- name: Create and push built branch
43
run: |
44
git checkout -b main-built
45
+ git reset -- .husky/ # Unstage the .husky directory
46
+ git reset -- node_modules/ # Unstage the node_modules directory
47
git add -A # Stage all changes, including untracked files
48
git ls-files --ignored --exclude-standard -o -z | xargs -0 git rm --cached # Remove ignored files from the index
49
git commit -m "Built WordPress plugin"
0 commit comments