Skip to content

Commit

Permalink
Update actions (#129)
Browse files Browse the repository at this point in the history
Signed-off-by: Knative Automation <automation@knative.team>
  • Loading branch information
knative-automation authored Mar 9, 2022
1 parent b9608ce commit 520dda0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/knative-releasability.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
env:
#########################################
# Update this section each release. #
RELEASE: 'v1.2'
MODULE_RELEASE: 'v0.29'
SLACK_CHANNEL: 'release-1dot2'
RELEASE: 'v1.3'
MODULE_RELEASE: 'v0.30'
SLACK_CHANNEL: 'release-1dot3'
#########################################

steps:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/knative-style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ jobs:
git check-attr --stdin linguist-vendored | grep -Ev ': (set|true)$' | cut -d: -f1 |
git check-attr --stdin ignore-lint | grep -Ev ': (set|true)$' | cut -d: -f1 |
grep -Ev '^(vendor/|third_party/|.git)' |
grep -v '\.svg$' |
xargs misspell -i importas -error |
reviewdog -efm="%f:%l:%c: %m" \
-name="github.com/client9/misspell" \
Expand Down Expand Up @@ -179,6 +180,7 @@ jobs:
git check-attr --stdin linguist-vendored | grep -Ev ': (set|true)$' | cut -d: -f1 |
git check-attr --stdin ignore-lint | grep -Ev ': (set|true)$' | cut -d: -f1 |
grep -Ev '^(vendor/|third_party/|.git)' |
grep -v '\.svg$' |
xargs grep -nE " +$" |
reviewdog -efm="%f:%l:%m" \
-name="trailing whitespace" \
Expand Down Expand Up @@ -211,7 +213,8 @@ jobs:
git check-attr --stdin linguist-vendored | grep -Ev ': (set|true)$' | cut -d: -f1 |
git check-attr --stdin ignore-lint | grep -Ev ': (set|true)$' | cut -d: -f1 |
grep -Ev '^(vendor/|third_party/|.git)' |
grep -v '\.ai$')
grep -v '\.ai$' |
grep -v '\.svg$')
for x in $LINT_FILES; do
# Based on https://stackoverflow.com/questions/34943632/linux-check-if-there-is-an-empty-line-at-the-end-of-a-file
Expand Down Expand Up @@ -246,6 +249,7 @@ jobs:
cat > .wokeignore <<EOF
vendor/*
third_party/*
*.svg
EOF
fi
Expand Down

0 comments on commit 520dda0

Please sign in to comment.