Skip to content

Commit 89739cd

Browse files
committed
chore(ci): temporarily disable link validation workflow
- Add if: false conditions to all jobs to prevent execution - Add disabled-check job to indicate the workflow is disabled - Preserves original conditions in comments for easy re-enabling To re-enable: Remove the 'if: false' conditions and disabled-check job
1 parent c781182 commit 89739cd

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/pr-link-validation.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,16 @@ on:
1313
- 'layouts/**/*.html'
1414

1515
jobs:
16+
# TEMPORARILY DISABLED - Remove this condition to re-enable link validation
17+
disabled-check:
18+
if: false # Set to true to re-enable the workflow
19+
runs-on: ubuntu-latest
20+
steps:
21+
- run: echo "Link validation is temporarily disabled"
1622
setup:
1723
name: Setup and Strategy Detection
1824
runs-on: ubuntu-latest
25+
if: false # TEMPORARILY DISABLED - Remove this condition to re-enable
1926
outputs:
2027
strategy: ${{ steps.determine-strategy.outputs.strategy }}
2128
has-changes: ${{ steps.determine-strategy.outputs.has-changes }}
@@ -99,7 +106,7 @@ jobs:
99106
validate:
100107
name: ${{ matrix.name }}
101108
needs: setup
102-
if: needs.setup.outputs.has-changes == 'true'
109+
if: false # TEMPORARILY DISABLED - Original condition: needs.setup.outputs.has-changes == 'true'
103110
runs-on: ubuntu-latest
104111
strategy:
105112
fail-fast: false
@@ -125,7 +132,7 @@ jobs:
125132
report:
126133
name: Report Results
127134
needs: [setup, validate]
128-
if: always() && needs.setup.outputs.has-changes == 'true'
135+
if: false # TEMPORARILY DISABLED - Original condition: always() && needs.setup.outputs.has-changes == 'true'
129136
runs-on: ubuntu-latest
130137
steps:
131138
- name: Checkout

0 commit comments

Comments
 (0)