[release-1.9] fixing bug in name of Solender to avoid CLA troubles, is fixing … #2597
Workflow file for this run
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
# Copyright 2020 The Knative Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# This file is automagically synced here from github.com/knative-sandbox/.github | |
# repo by knobots: https://github.com/knative-sandbox/knobots and will be overwritten. | |
name: Do Not Submit | |
on: | |
pull_request: | |
branches: [ 'main', 'master', 'release-*' ] | |
jobs: | |
donotsubmit: | |
name: Do Not Submit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Do Not Submit | |
shell: bash | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} | |
run: | | |
set -e | |
cd "${GITHUB_WORKSPACE}" || exit 1 | |
TEMP_PATH="$(mktemp -d)" | |
PATH="${TEMP_PATH}:$PATH" | |
echo '::group::🐶 Installing reviewdog ... https://github.com/reviewdog/reviewdog' | |
curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b "${TEMP_PATH}" 2>&1 | |
echo '::endgroup::' | |
echo '::group:: Running DO NOT SUBMIT with reviewdog 🐶 ...' | |
# Don't fail because of grep | |
set +o pipefail | |
find . -type f -not -path './vendor/*' -not -path './third_party/*' -not -path './.git/*' -not -path './.github/workflows/*' | | |
xargs grep -n "DO NOT SUBMIT" | | |
reviewdog -efm="%f:%l:%m" \ | |
-name="DO NOT SUBMIT" \ | |
-reporter="github-pr-check" \ | |
-filter-mode="added" \ | |
-fail-on-error="true" \ | |
-level="error" | |
echo '::endgroup::' |