Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: always run ci (backport #4334) #4335

Merged
merged 5 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/md-link-checker.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: Check Markdown links
on:
pull_request:
paths:
- "**.*.md"
push:
paths:
- "**.*.md"
branches:
- main
- release/*
Expand All @@ -18,14 +14,18 @@ jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
<<<<<<< HEAD
- uses: actions/[email protected]
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/*.md
=======
- uses: actions/checkout@v4
>>>>>>> 294ec4d5 (ci: always run ci (#4334))
- uses: gaurav-nelson/[email protected]
if: env.GIT_DIFF
with:
folder-path: "."
use-verbose-mode: 'yes'
config-file: '.github/workflows/md-link-checker-config.json'
use-verbose-mode: "yes"
config-file: ".github/workflows/md-link-checker-config.json"
4 changes: 4 additions & 0 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
test-path: ${{fromJson(needs.pre-test.outputs.matrix)}}
steps:
<<<<<<< HEAD
- uses: actions/[email protected]
- uses: technote-space/[email protected]
with:
Expand All @@ -46,6 +47,9 @@ jobs:
go.mod
go.sum
**/testdata/**
=======
- uses: actions/checkout@v4
>>>>>>> 294ec4d5 (ci: always run ci (#4334))

- uses: actions/setup-go@v4
if: env.GIT_DIFF
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
<<<<<<< HEAD
- uses: actions/[email protected]
- uses: technote-space/[email protected]
with:
Expand All @@ -27,6 +28,9 @@ jobs:
**/*.plush
go.mod
go.sum
=======
- uses: actions/checkout@v4
>>>>>>> 294ec4d5 (ci: always run ci (#4334))

- uses: actions/setup-go@v4
if: env.GIT_DIFF
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
<<<<<<< HEAD
- uses: actions/[email protected]
- uses: technote-space/[email protected]
with:
Expand All @@ -29,6 +30,9 @@ jobs:
go.mod
go.sum
**/testdata/**
=======
- uses: actions/checkout@v4
>>>>>>> 294ec4d5 (ci: always run ci (#4334))

- uses: actions/setup-go@v4
if: env.GIT_DIFF
Expand Down
Loading