-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'influxdata/release-1.31' into remp
# Conflicts: # .circleci/config.yml # .github/workflows/govulncheck.yml # .github/workflows/linter.yml # .github/workflows/readme-linter.yml # build_version.txt # cmd/telegraf/main.go # go.mod # logger/logger.go # plugins/aggregators/final/sample.conf # plugins/common/opcua/opcua_util.go # plugins/common/socket/stream.go # plugins/inputs/azure_monitor/azure_monitor_test.go # plugins/inputs/http/http.go # plugins/inputs/httpjson/httpjson.go # plugins/inputs/phpfpm/phpfpm.go # plugins/inputs/phpfpm/phpfpm_test.go # plugins/inputs/phpfpm/sample.conf # plugins/inputs/procstat/procstat.go # plugins/inputs/procstat/procstat_test.go # plugins/inputs/snmp/snmp.go # plugins/inputs/systemd_units/systemd_units.go # plugins/outputs/http/http.go # plugins/outputs/socket_writer/socket_writer.go # plugins/processors/reverse_dns/reverse_dns_test.go # plugins/processors/starlark/starlark_test.go
- Loading branch information
Showing
1,577 changed files
with
60,240 additions
and
24,246 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,9 +1,19 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- "dependencies" | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
ignore: | ||
# Dependabot isn't able to update this packages that do not match the source, so anything with a version | ||
# Dependabot isn't able to update this packages that do not match the | ||
# source, so anything with a version | ||
- dependency-name: "*.v*" | ||
labels: | ||
- "dependencies" |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: milestones | ||
name: Milestones | ||
on: | ||
pull_request_target: | ||
types: | ||
|
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,24 @@ | ||
name: Target Branch | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- edited | ||
|
||
jobs: | ||
check-target-master: | ||
name: master | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: debug | ||
run: echo Target is ${{ github.event.pull_request.base.ref }} | ||
- name: success | ||
if: github.event.pull_request.base.ref == 'master' | ||
run: exit 0 | ||
- name: error | ||
if: github.event.pull_request.base.ref != 'master' | ||
run: | | ||
echo "Pull-request is not based on master, please rebase" | ||
exit 1 |
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
Oops, something went wrong.