Skip to content

Commit e6a623b

Browse files
authored
Merge pull request #5 from Wolf2323/naming
fixed some naming
2 parents a6b1a82 + 0e19afb commit e6a623b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Contains a set of file configurations, that are common for the BetonQuest develo
55
By setting up the following GitHub Action, the common files will be synced to the repository.
66
This will be done by creating a PR with the changes.
77

8-
Suggested name: `.github/workflows/sync-common-files.yml`
8+
Suggested name: `.github/workflows/sync_common_files.yml`
99

1010
```yaml
1111
name: Sync Common Files
@@ -30,5 +30,5 @@ You can also run the action with the following arguments:
3030
with:
3131
source-repo: https://github.com/BetonQuest/CommonProjectFiles
3232
ignored-files: mvnw,mvnw.cmd
33-
include-default-ignored-files: .github/workflows/EditorConfig.yml
33+
include-default-ignored-files: .github/workflows/editorconfig.yml
3434
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
- name: Prepare Ignored Files
3636
shell: bash --noprofile --norc -euo pipefail {0}
3737
run: |
38-
DEFAULT_IGNORED_FILES=".git,README.md,LICENSE,action.yml,.github/workflows/EditorConfig.yml"
38+
DEFAULT_IGNORED_FILES=".git,README.md,LICENSE,action.yml,.github/workflows/editorconfig.yml"
3939
IGNORE_FILES="${DEFAULT_IGNORED_FILES}"
4040
if [[ -n "${{ inputs.ignored-files }}" ]]; then
4141
IGNORE_FILES+=",${{ inputs.ignored-files }}"

0 commit comments

Comments
 (0)