Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down