You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Automatically run the setup steps when they are changed to allow for easy validation, and
4
+
# allow manual testing through the repository's "Actions" tab
5
+
on:
6
+
workflow_dispatch:
7
+
push:
8
+
branches:
9
+
- main
10
+
paths:
11
+
- .github/workflows/copilot-setup-steps.yml
12
+
pull_request:
13
+
paths:
14
+
- .github/workflows/copilot-setup-steps.yml
15
+
16
+
jobs:
17
+
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
18
+
copilot-setup-steps:
19
+
runs-on: ubuntu-latest
20
+
# Set the permissions to the lowest permissions possible needed for your steps.
21
+
# Copilot will be given its own token for its operations.
22
+
permissions:
23
+
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
24
+
contents: read
25
+
26
+
# You can define any steps you want, and they will run before the agent starts.
27
+
# If you do not check out your code, Copilot will do this for you.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,3 +104,17 @@ Configuration is in the `.github/renovate.json` file.
104
104
When changing the renovate.json file, follow [these validation steps](https://docs.renovatebot.com/config-validation/).
105
105
106
106
If Renovate is not creating pull requests when you expect it to, check that the [Renovate GitHub App](https://github.com/apps/renovate) is configured for your account or repo.
107
+
108
+
## Merging latest from Library.Template
109
+
110
+
### Maintaining your repo based on this template
111
+
112
+
The best way to keep your repo in sync with Library.Template's evolving features and best practices is to periodically merge the template into your repo:
113
+
`
114
+
```ps1
115
+
git fetch
116
+
git checkout origin/main
117
+
.\tools\MergeFrom-Template.ps1
118
+
# resolve any conflicts, then commit the merge commit.
0 commit comments