-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jdb/2023-01-add-doc-validator
- Loading branch information
Showing
1,304 changed files
with
40,760 additions
and
24,463 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
chartpath: ${{ steps.list-changed.outputs.chartpath }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
path: source | ||
|
@@ -63,7 +63,7 @@ jobs: | |
if: needs.setup.outputs.changed == 'true' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
path: source | ||
|
@@ -75,7 +75,7 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Checkout helm-charts | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
repository: grafana/helm-charts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Regenerate docs | ||
run: | | ||
|
@@ -22,7 +22,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Helm | ||
uses: azure/setup-helm@v3 | ||
|
@@ -41,7 +41,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -74,5 +74,15 @@ jobs: | |
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Add dependency chart repos | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: | | ||
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | ||
- name: Install Prometheus Operator CRDs | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: | | ||
helm install my-prometheus-operator-crds prometheus-community/prometheus-operator-crds --version 6.0.0 | ||
- name: Test charts | ||
run: ct install --config ./operations/helm/ct.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Check whether issues or PRs need attention | ||
on: | ||
workflow_dispatch: {} | ||
schedule: | ||
- cron: '0 0 * * *' | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
jobs: | ||
needs-attention: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
days-before-stale: 30 | ||
days-before-close: -1 # never close automatically | ||
stale-issue-message: > | ||
This issue has not had any activity in the past 30 days, so the | ||
`needs-attention` label has been added to it. | ||
If the opened issue is a bug, check to see if a newer release fixed | ||
your issue. If it is no longer relevant, please feel free to close | ||
this issue. | ||
The `needs-attention` label signals to maintainers that something | ||
has fallen through the cracks. No action is needed by you; your issue | ||
will be kept open and you do not have to respond to this comment. The | ||
label will be removed the next time this job runs if there is new | ||
activity. | ||
Thank you for your contributions! | ||
stale-pr-message: > | ||
This PR has not had any activity in the past 30 days, so the | ||
`needs-attention` label has been added to it. | ||
If you do not have enough time to follow up on this PR or you think | ||
it's no longer relevant, consider closing it. | ||
The `needs-attention` label signals to maintainers that something | ||
has fallen through the cracks. No action is needed by you; your PR | ||
will be kept open and you do not have to respond to this comment. | ||
The label will be removed the next time this job runs if there is | ||
new activity. | ||
Thank you for your contributions! | ||
stale-issue-label: needs-attention | ||
stale-pr-label: needs-attention | ||
exempt-issue-labels: keepalive,proposal,outdated-dependency,dev-branch | ||
exempt-pr-labels: keepalive,proposal,outdated-dependency,dev-branch |
Oops, something went wrong.