-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'branch/v16' of github.com:gravitational/teleport into m…
…cbattirola/v16/add-license-auto-update-entitlement
- Loading branch information
Showing
693 changed files
with
30,374 additions
and
13,779 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This check runs only on PRs that are in the merge queue. | ||
# | ||
# PRs in the merge queue have already been approved but the reviewers check | ||
# is still required so this workflow allows the required check to succeed, | ||
# otherwise PRs in the merge queue would be blocked indefinitely. | ||
# | ||
# See "Handling skipped but required checks" for more info: | ||
# | ||
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | ||
# | ||
# Note both workflows must have the same name. | ||
name: Validate changelog entry | ||
on: | ||
merge_group: | ||
|
||
jobs: | ||
validate-changelog: | ||
name: Validate the changelog entry | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: none | ||
|
||
steps: | ||
- run: 'echo "Skipping changelog check in merge queue"' |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
# Stable releases: "1.0.0" | ||
# Pre-releases: "1.0.0-alpha.1", "1.0.0-beta.2", "1.0.0-rc.3" | ||
# Master/dev branch: "1.0.0-dev" | ||
VERSION=16.4.2 | ||
VERSION=16.4.3 | ||
|
||
DOCKER_IMAGE ?= teleport | ||
|
||
|
@@ -758,14 +758,6 @@ $(RERUN): $(wildcard $(TOOLINGDIR)/cmd/rerun/*.go) | |
RELEASE_NOTES_GEN := $(TOOLINGDIR)/bin/release-notes | ||
$(RELEASE_NOTES_GEN): $(wildcard $(TOOLINGDIR)/cmd/release-notes/*.go) | ||
cd $(TOOLINGDIR) && go build -o "$@" ./cmd/release-notes | ||
# | ||
# Downloads and builds changelog from source. | ||
# PHONY is set so that we rely on Go's mod cache and not Make's cache. | ||
# | ||
CHANGELOG := $(TOOLINGDIR)/bin/changelog | ||
.PHONY: $(CHANGELOG) | ||
$(CHANGELOG): | ||
@GOBIN=$(TOOLINGDIR)/bin go install github.com/gravitational/shared-workflows/tools/[email protected] | ||
|
||
.PHONY: tooling | ||
tooling: ensure-gotestsum $(DIFF_TEST) | ||
|
@@ -1727,14 +1719,15 @@ rustup-install-target-toolchain: rustup-set-version | |
# changelog generates PR changelog between the provided base tag and the tip of | ||
# the specified branch. | ||
# | ||
# usage: make -s changelog | ||
# usage: make -s changelog BASE_BRANCH=branch/v13 BASE_TAG=13.2.0 | ||
# usage: BASE_BRANCH=branch/v13 BASE_TAG=13.2.0 make -s changelog | ||
# usage: make changelog | ||
# usage: make changelog BASE_BRANCH=branch/v13 BASE_TAG=v13.2.0 | ||
# usage: BASE_BRANCH=branch/v13 BASE_TAG=v13.2.0 make changelog | ||
# | ||
# BASE_BRANCH and BASE_TAG will be automatically determined if not specified. | ||
CHANGELOG = github.com/gravitational/shared-workflows/tools/changelog@latest | ||
.PHONY: changelog | ||
changelog: $(CHANGELOG) | ||
@$(CHANGELOG) --base-branch="$(BASE_BRANCH)" --base-tag="$(BASE_TAG)" ./ | ||
changelog: | ||
@go run $(CHANGELOG) --base-branch="$(BASE_BRANCH)" --base-tag="$(BASE_TAG)" ./ | ||
|
||
# create-github-release will generate release notes from the CHANGELOG.md and will | ||
# create release notes from them. | ||
|
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.