diff --git a/.github/workflows/EditorConfig.yml b/.github/workflows/editorconfig.yml similarity index 100% rename from .github/workflows/EditorConfig.yml rename to .github/workflows/editorconfig.yml diff --git a/README.md b/README.md index b9c6203..4f808d4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Contains a set of file configurations, that are common for the BetonQuest develo By setting up the following GitHub Action, the common files will be synced to the repository. This will be done by creating a PR with the changes. -Suggested name: `.github/workflows/sync-common-files.yml` +Suggested name: `.github/workflows/sync_common_files.yml` ```yaml name: Sync Common Files @@ -30,5 +30,5 @@ You can also run the action with the following arguments: with: source-repo: https://github.com/BetonQuest/CommonProjectFiles ignored-files: mvnw,mvnw.cmd - include-default-ignored-files: .github/workflows/EditorConfig.yml + include-default-ignored-files: .github/workflows/editorconfig.yml ``` diff --git a/action.yml b/action.yml index 4b7a999..e1e270b 100644 --- a/action.yml +++ b/action.yml @@ -35,7 +35,7 @@ runs: - name: Prepare Ignored Files shell: bash --noprofile --norc -euo pipefail {0} run: | - DEFAULT_IGNORED_FILES=".git,README.md,LICENSE,action.yml,.github/workflows/EditorConfig.yml" + DEFAULT_IGNORED_FILES=".git,README.md,LICENSE,action.yml,.github/workflows/editorconfig.yml" IGNORE_FILES="${DEFAULT_IGNORED_FILES}" if [[ -n "${{ inputs.ignored-files }}" ]]; then IGNORE_FILES+=",${{ inputs.ignored-files }}"