From b431b34fb8b6b91196feef683da67aeb499b3342 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 28 Jan 2021 22:49:52 +0100 Subject: [PATCH 1/2] update slack channel to CNCF slack Signed-off-by: Sebastiaan van Stijn --- CONTRIBUTING.md | 5 +++-- README.md | 12 ++++++------ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c4f40ecf7..9afa9fb59 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,8 +17,9 @@ - can't figure out something - are not sure what's going on or what your problem is -Please ask first in the #distribution channel on Docker community slack. -[Click here for an invite to Docker community slack](https://dockr.ly/slack) +Please ask first in the `#distribution` channel on Cloud Native Computing +Foundation's (CNCF) slack - `cloud-native.slack.com`. +[Get Invite to CNCF slack.](https://slack.cncf.io) ### Reporting security issues diff --git a/README.md b/README.md index ce0e08cd9..9978d3dfa 100644 --- a/README.md +++ b/README.md @@ -75,13 +75,13 @@ the instructions for [building a development environment](BUILDING.md). ## Communication -For async communication and long running discussions please use issues and pull requests on the github repo. -This will be the best place to discuss design and implementation. +For async communication and long running discussions please use issues and pull +requests on the GitHub repo. This will be the best place to discuss design and +implementation. -For sync communication we have a community slack with a #distribution channel that everyone is welcome to join and chat about development. - -**Slack:** Catch us in the #distribution channels on dockercommunity.slack.com. -[Click here for an invite to Docker community slack.](https://dockr.ly/slack) +For sync communication catch us in the `#distribution` slack channels on Cloud +Native Computing Foundation's (CNCF) slack - `cloud-native.slack.com`. Everyone +is welcome to join and chat about development. [Get Invite to CNCF slack.](https://slack.cncf.io) ## Licenses From 402d3c943a1a3fb55855730cbde9cb4587d67541 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Fri, 29 Jan 2021 15:48:07 -0500 Subject: [PATCH 2/2] Fixing push workflow Signed-off-by: Chris Patterson --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96921899e..37f5a9b94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: GO111MODULE: "auto" GOPATH: ${{ github.workspace }} GOOS: linux - COMMIT_RANGE: ${{ github.event_name == 'pull_request' && format('{0}..{1}',github.event.pull_request.base.sha, github.event.pull_request.head.sha) || github.sha }} + COMMIT_RANGE: ${{ github.event_name == 'pull_request' && format('{0}..{1}',github.event.pull_request.base.sha, github.event.pull_request.head.sha) || format('{0}..{1}', github.event.before, github.event.after) }} steps: - uses: actions/checkout@v2