Skip to content

Commit 9b3de35

Browse files
authored
Merge branch '3006.x' into copilot/enable-copilot-in-agents-directory
2 parents 2202af4 + 7b573b8 commit 9b3de35

File tree

3,317 files changed

+582309
-86010
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,317 files changed

+582309
-86010
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 0 additions & 95 deletions
This file was deleted.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: Bug, needs-triage
6+
assignees: ''
7+
8+
---
9+
10+
**Description**
11+
A clear and concise description of what the bug is.
12+
13+
**Setup**
14+
(Please provide relevant configs and/or SLS files (be sure to remove sensitive info. There is no general set-up of Salt.)
15+
16+
Please be as specific as possible and give set-up details.
17+
18+
- [ ] on-prem machine
19+
- [ ] VM (Virtualbox, KVM, etc. please specify)
20+
- [ ] VM running on a cloud service, please be explicit and add details
21+
- [ ] container (Kubernetes, Docker, containerd, etc. please specify)
22+
- [ ] or a combination, please be explicit
23+
- [ ] jails if it is FreeBSD
24+
- [ ] classic packaging
25+
- [ ] onedir packaging
26+
- [ ] used bootstrap to install
27+
28+
29+
**Steps to Reproduce the behavior**
30+
(Include debug logs if possible and relevant)
31+
32+
**Expected behavior**
33+
A clear and concise description of what you expected to happen.
34+
35+
**Screenshots**
36+
If applicable, add screenshots to help explain your problem.
37+
38+
**Versions Report**
39+
<details><summary>salt --versions-report</summary>
40+
(Provided by running salt --versions-report. Please also mention any differences in master/minion versions.)
41+
42+
```yaml
43+
PASTE HERE
44+
```
45+
</details>
46+
47+
**Additional context**
48+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
blank_issues_enabled: true
22
contact_links:
3-
- name: Feature Requests and Q&A
4-
url: https://github.com/saltstack/salt/discussions
5-
about: Please see GitHub Discussions for Feature Requests and Q&A
63
- name: Salt Community Discord
74
url: https://discord.com/invite/J7b7EscrAs
8-
about: Please ask and answer questions here
5+
about: Please ask and answer questions here.
96
- name: Salt-Users Forum
107
url: https://groups.google.com/forum/#!forum/salt-users
11-
about: Prefer email list for Q&A? Check out the Google groups newsletter
8+
about: Please ask and answer questions here.

.github/ISSUE_TEMPLATE/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Docs
33
about: Issue related to Salt Documentation
44
title: "[DOCS]"
5-
labels: documentation, needs-triage
5+
labels: Documentation, needs-triage
66
assignees: ''
77

88
---
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEATURE REQUEST]"
5+
labels: Feature, needs-triage
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
21+
22+
**Please Note**
23+
If this feature request would be considered a substantial change or addition, this should go through a SEP process here https://github.com/saltstack/salt-enhancement-proposals, instead of a feature request.

.github/ISSUE_TEMPLATE/test-failure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: Test Failure
3-
about: GitHub Actions Test Failure issues
3+
about: Jenkins Test Failure issues
44
title: "[TEST FAILURE]"
5-
labels: 'test-failure'
5+
labels: 'Test-Failure'
66
assignees: ''
77

88
---

.github/actions/build-onedir-deps/action.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,22 @@ runs:
2525
using: composite
2626

2727
steps:
28-
- name: Get Hash For Onedir Deps Cache
29-
id: onedir-deps-hash
30-
shell: bash
31-
run: |
32-
HASH=$(python3 .github/scripts/hash-files.py \
33-
'.relenv/**/*.xz' \
34-
'requirements/static/pkg/*/*.txt' \
35-
'tools/pkg/build.py' \
36-
'.github/actions/build-onedir-deps/action.yml' \
37-
'.github/workflows/build-deps-onedir-*.yml' \
38-
'cicd/shared-gh-workflows-context.yml')
39-
echo "hash=${HASH}" | tee -a "$GITHUB_OUTPUT"
40-
4128
- name: Cache Deps Onedir Package Directory
4229
id: onedir-pkg-cache
4330
uses: ./.github/actions/cache
4431
with:
4532
path: artifacts/${{ inputs.package-name }}
46-
key: ${{ inputs.cache-prefix }}|${{ inputs.python-version }}|deps|${{ inputs.platform }}|${{ inputs.arch }}|${{ inputs.package-name }}|${{ steps.onedir-deps-hash.outputs.hash }}
33+
key: >
34+
${{ inputs.cache-prefix }}|${{ inputs.python-version }}|deps|${{ inputs.platform }}|${{ inputs.arch }}|${{ inputs.package-name }}|${{
35+
hashFiles(
36+
format('{0}/.relenv/**/*.xz', github.workspace),
37+
'requirements/static/pkg/*/*.txt',
38+
'tools/pkg/build.py',
39+
'.github/actions/build-onedir-deps/action.yml',
40+
'.github/workflows/build-deps-onedir-*.yml',
41+
'cicd/shared-gh-workflows-context.yml'
42+
)
43+
}}
4744
4845
- name: Install Salt Onedir Package Dependencies
4946
shell: bash

.github/actions/setup-python-tools-scripts/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ runs:
3131
id: venv-hash
3232
shell: bash
3333
run: |
34-
FILES_HASH=$(python3 .github/scripts/hash-files.py 'requirements/**/*.txt' 'tools/**/*.py')
3534
VENV_NAME_HASH=$(echo "${{ inputs.cache-prefix }}|${{ github.workflow }}|${{
36-
steps.get-python-version.outputs.version-sha256sum }}|${FILES_HASH}" | sha256sum | cut -d ' ' -f 1)
35+
steps.get-python-version.outputs.version-sha256sum }}|${{
36+
hashFiles('requirements/**/*.txt', 'tools/**/*.py') }}" | sha256sum | cut -d ' ' -f 1)
3737
echo "TOOLS_VIRTUALENV_CACHE_SEED=$VENV_NAME_HASH" | tee -a "${GITHUB_ENV}"
3838
echo "venv-hash=$VENV_NAME_HASH" | tee -a "${GITHUB_OUTPUT}"
3939

.github/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,48 +4,48 @@
44
newIssueWelcomeComment: >
55
Hi there! Welcome to the Salt Community! Thank you for making your first contribution. We have
66
a lengthy process for issues and PRs. Someone from the Core Team will follow up as soon as
7-
possible. In the meantime, here's some information that may help as you continue your Salt
7+
possible. In the meantime, heres some information that may help as you continue your Salt
88
journey.
99
1010
Please be sure to review our [Code of Conduct](https://github.com/saltstack/salt/blob/master/CODE_OF_CONDUCT.md).
1111
Also, check out some of our community
1212
resources including:
1313
14-
- [Salt's Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
14+
- [Salts Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
1515
- [Join our Community Discord](https://discord.com/invite/J7b7EscrAs)
1616
- [Salt Project YouTube channel](https://www.youtube.com/channel/UCpveTIucFx9ljGelW63-BWg)
17-
- [GitHub Discussions](https://github.com/saltstack/salt/discussions)
17+
- [Community Wiki](https://github.com/saltstack/community/wiki)
1818
1919
There are lots of ways to get involved in our community. Every month, there are around a dozen
2020
opportunities to meet with other contributors and the Salt Core team and collaborate in real
2121
time. The best way to keep track is by subscribing to the Salt Community Events Calendar.
2222
23-
If you have additional questions, email us at saltproject.pdl@broadcom.com. We're glad
24-
you've joined our community and look forward to doing awesome things with
23+
If you have additional questions, email us at saltproject.pdl@broadcom.com. Were glad
24+
youve joined our community and look forward to doing awesome things with
2525
you!
2626
2727
# Comment to be posted to on PRs from first time contributors in your repository
2828
newPRWelcomeComment: >
2929
Hi there! Welcome to the Salt Community! Thank you for making your first contribution. We have
3030
a lengthy process for issues and PRs. Someone from the Core Team will follow up as soon as
31-
possible. In the meantime, here's some information that may help as you continue your Salt
31+
possible. In the meantime, heres some information that may help as you continue your Salt
3232
journey.
3333
3434
Please be sure to review our [Code of Conduct](https://github.com/saltstack/salt/blob/master/CODE_OF_CONDUCT.md).
3535
Also, check out some of our community
3636
resources including:
3737
38-
- [Salt's Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
38+
- [Salts Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
3939
- [Join our Community Discord](https://discord.com/invite/J7b7EscrAs)
4040
- [Salt Project YouTube channel](https://www.youtube.com/channel/UCpveTIucFx9ljGelW63-BWg)
41-
- [GitHub Discussions](https://github.com/saltstack/salt/discussions)
41+
- [Community Wiki](https://github.com/saltstack/community/wiki)
4242
4343
There are lots of ways to get involved in our community. Every month, there are around a dozen
4444
opportunities to meet with other contributors and the Salt Core team and collaborate in real
4545
time. The best way to keep track is by subscribing to the Salt Community Events Calendar.
4646
47-
If you have additional questions, email us at saltproject.pdl@broadcom.com. We're glad
48-
you've joined our community and look forward to doing awesome things with
47+
If you have additional questions, email us at saltproject.pdl@broadcom.com. Were glad
48+
youve joined our community and look forward to doing awesome things with
4949
you!
5050
5151
# Comment to be posted to on pull requests merged by a first time user

.github/dependabot.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)