Skip to content

Commit 60ae6c4

Browse files
updated location of ModelSim gitignore file (#4479)
per github/gitignore@ca05a4d this file has been moved this is causing this error: https://github.com/graphql/graphql-js/actions/runs/17255990646/job/48967789469?pr=4478: ``` Run git clone --depth 1 https://github.com/github/gitignore.git git clone --depth 1 https://github.com/github/gitignore.git rm gitignore/Global/ModelSim.gitignore rm gitignore/Global/Images.gitignore cat gitignore/Node.gitignore gitignore/Global/*.gitignore > all.gitignore IGNORED_FILES=$(git ls-files --cached --ignored --exclude-from=all.gitignore) if [[ "$IGNORED_FILES" != "" ]]; then echo -e "::error::Please remove these files:\n$IGNORED_FILES" | sed -z 's/\n/%0A/g' exit 1 fi shell: /usr/bin/bash -e {0} Cloning into 'gitignore'... rm: cannot remove 'gitignore/Global/ModelSim.gitignore': No such file or directory Error: Process completed with exit code 1. ``` --------- Co-authored-by: Jovi De Croock <[email protected]>
1 parent 6808b16 commit 60ae6c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ jobs:
5656

5757
- name: Check if commit contains files that should be ignored
5858
run: |
59-
git clone --depth 1 https://github.com/github/gitignore.git
59+
git clone --depth 1 https://github.com/github/gitignore.git --revision b19bb58983cdae1e3a3fd6eafba0b9f2ec3c53ca
6060
61-
rm gitignore/Global/ModelSim.gitignore
61+
rm gitignore/ModelSim.gitignore
6262
rm gitignore/Global/Images.gitignore
6363
cat gitignore/Node.gitignore gitignore/Global/*.gitignore > all.gitignore
6464

0 commit comments

Comments
 (0)