Skip to content

Commit 8fb2877

Browse files
authored
Fix failing checks & GitHub Actions (#246)
Fix failing checks & GitHub Actions (#246) * Excluding fearlesschangepatterns.com from link check, as it keeps failiing * only run ToC generation on push to master (but not on pull requests) * only run link check on 'push'
1 parent 2ff4fb0 commit 8fb2877

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/book.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Book ToC Generation
22

33
on:
4-
pull_request:
54
push:
65
branches:
76
- "master"

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
name: Link Check on Patterns and README
55

6-
on: [push, pull_request]
6+
on: push
7+
78
jobs:
89
linkChecker:
910
runs-on: ubuntu-latest
@@ -13,6 +14,6 @@ jobs:
1314
id: lc
1415
uses: peter-evans/link-checker@v1
1516
with:
16-
args: -v -d . -x "http://creativecommons.org/licenses|https://isc-inviter.herokuapp.com|https://github.com/rcs/rcs-viewer/pull/81" README.md patterns/ -r
17+
args: -v -d . -x "http://creativecommons.org/licenses|https://isc-inviter.herokuapp.com|https://github.com/rcs/rcs-viewer/pull/81|fearlesschangepatterns.com" README.md patterns/ -r
1718
- name: Fail if there were link errors
1819
run: exit ${{ steps.lc.outputs.exit_code }}

0 commit comments

Comments
 (0)