Skip to content

Commit

Permalink
fix: copy missing template files (#166)
Browse files Browse the repository at this point in the history
# Description

Copy the template files which are missing:
- template for pull requests
- renovate configuration
- pre-commit configuration
  • Loading branch information
kayman-mk authored Jan 9, 2025
1 parent c3cf783 commit 762f280
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<!--- yamllint disable rule:single-title/single-h1 -->

# Description

What is the overall goal of your PR? Which problem does it solve? Please also include relevant motivation and context.
Expand Down
4 changes: 4 additions & 0 deletions .github/update_workflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ mkdir -p "$destination_path/.github/workflows/scripts"
cp .github/workflows/default_* "$destination_path/.github/workflows"
cp .github/workflows/scripts/* "$destination_path/.github/workflows/scripts/"

cp .github/.pre-commit-config.yaml "$destination_path/.github/"
cp .github/pull_request_template.md "$destination_path/.github/"
cp .github/renovate.json5 "$destination_path/.github/"

# move the update-workflows.sh script to the correct location (from older releases)
if [ -f "$destination_path/update-workflows.sh" ]; then
git mv -f "$destination_path/update-workflows.sh" "$destination_path/.github/update_workflows.sh"
Expand Down

0 comments on commit 762f280

Please sign in to comment.