diff --git a/.github/sync-files.yaml b/.github/sync-files.yaml index b5a11f7..531120a 100644 --- a/.github/sync-files.yaml +++ b/.github/sync-files.yaml @@ -1,4 +1,5 @@ -- repository: autowarefoundation/autoware +- repository: autowarefoundation/sync-file-templates + source-dir: sources files: - source: CODE_OF_CONDUCT.md - source: CONTRIBUTING.md @@ -7,9 +8,7 @@ - source: .github/ISSUE_TEMPLATE/bug.yaml - source: .github/ISSUE_TEMPLATE/config.yml - source: .github/ISSUE_TEMPLATE/task.yaml - - source: .github/PULL_REQUEST_TEMPLATE.md - - source: .github/PULL_REQUEST_TEMPLATE/small-change.md - - source: .github/PULL_REQUEST_TEMPLATE/standard-change.md + - source: .github/pull_request_template.md - source: .github/dependabot.yaml - source: .github/stale.yml - source: .github/workflows/github-release.yaml @@ -18,18 +17,20 @@ - source: .github/workflows/semantic-pull-request.yaml - source: .github/workflows/spell-check-differential.yaml - source: .github/workflows/sync-files.yaml + - source: .github/workflows/sync-files-daily.yaml - source: .markdown-link-check.json - source: .markdownlint.yaml - source: .pre-commit-config-optional.yaml - source: .prettierignore - source: .prettierrc.yaml - source: .yamllint.yaml - -- repository: autowarefoundation/autoware_common - files: - source: .github/workflows/build-and-test.yaml pre-commands: | sed -i '/build-depends-repos/d' {source} - source: .github/workflows/build-and-test-differential.yaml pre-commands: | sed -i '/build-depends-repos/d' {source} + +# sed: The stream editor command, used for parsing and transforming text. +# -i: Edit files in place. +# '/build-depends-repos/d': Delete the line containing 'build-depends-repos'.