-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit 0025dd0. Signed-off-by: GW Cloud Common Services <[email protected]>
- Loading branch information
vchinda
authored and
GW Cloud Common Services
committed
Jul 10, 2024
1 parent
3c296de
commit fdeef57
Showing
2 changed files
with
18 additions
and
18 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 |
---|---|---|
|
@@ -18,24 +18,24 @@ env: | |
|
||
jobs: | ||
|
||
# detect-noop: | ||
# runs-on: ubuntu-20.04 | ||
# outputs: | ||
# noop: ${{ steps.noop.outputs.should_skip }} | ||
# steps: | ||
# - name: Detect No-op Changes | ||
# id: noop | ||
# uses: fkirc/[email protected] | ||
# with: | ||
# # github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# paths_ignore: '["**.md", "**.mdx", "**.png", "**.jpg"]' | ||
# do_not_skip: '["workflow_dispatch", "schedule", "push"]' | ||
# concurrent_skipping: false | ||
detect-noop: | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
noop: ${{ steps.noop.outputs.should_skip }} | ||
steps: | ||
- name: Detect No-op Changes | ||
id: noop | ||
uses: fkirc/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
paths_ignore: '["**.md", "**.mdx", "**.png", "**.jpg"]' | ||
do_not_skip: '["workflow_dispatch", "schedule", "push"]' | ||
concurrent_skipping: false | ||
|
||
staticcheck: | ||
runs-on: ubuntu-20.04 | ||
# needs: detect-noop | ||
# if: needs.detect-noop.outputs.noop != 'true' | ||
needs: detect-noop | ||
if: needs.detect-noop.outputs.noop != 'true' | ||
|
||
steps: | ||
- name: Setup Go | ||
|
@@ -63,8 +63,8 @@ jobs: | |
|
||
lint: | ||
runs-on: ubuntu-20.04 | ||
# needs: detect-noop | ||
# if: needs.detect-noop.outputs.noop != 'true' | ||
needs: detect-noop | ||
if: needs.detect-noop.outputs.noop != 'true' | ||
|
||
steps: | ||
- name: Setup Go | ||
|
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