Skip to content

Commit d36b21d

Browse files
authored
Remove paths / paths-ignore condition from CI (#8704)
Does not work very well with branch protection rules. Pending some other solution, re-enable our ability to merge stuff.
1 parent 0aab6ec commit d36b21d

File tree

6 files changed

+1
-23
lines changed

6 files changed

+1
-23
lines changed

Diff for: .github/workflows/build-host.yml

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ name: Build on host OS
55

66
on:
77
pull_request:
8-
paths-ignore:
9-
- "boards.txt"
10-
- "package/**"
11-
- "tools/boards.txt.py"
12-
- 'doc/**'
138

149
permissions:
1510
contents: read

Diff for: .github/workflows/build-ide.yml

-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ name: Build IDE examples
44

55
on:
66
pull_request:
7-
paths-ignore:
8-
- "boards.txt"
9-
- "package/**"
10-
- "tools/boards.txt.py"
11-
- 'doc/**'
127

138
permissions:
149
contents: read

Diff for: .github/workflows/build-platformio.yml

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ name: Build examples with PlatformIO
66

77
on:
88
pull_request:
9-
paths-ignore:
10-
- "boards.txt"
11-
- "tools/boards.txt.py"
12-
- 'doc/**'
139

1410
permissions:
1511
contents: read

Diff for: .github/workflows/check-autogenerated.yml

-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@ name: Check autogenerated files
44

55
on:
66
pull_request:
7-
paths:
8-
- "boards.txt"
9-
- "bootloaders/**"
10-
- "doc/boards.rst"
11-
- "package/**"
12-
- "tools/boards.txt.py"
13-
- "tools/sdk/ld/**"
147

158
permissions:
169
contents: read

Diff for: .github/workflows/documentation.yml

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ name: Documentation
44

55
on:
66
pull_request:
7-
paths:
8-
- 'doc/**'
97

108
permissions:
119
contents: read

Diff for: libraries/esp8266/examples/IramReserve/ProcessKey.ino

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include <esp8266_undocumented.h>
22
void crashMeIfYouCan(void) __attribute__((weak));
33
int divideA_B(int a, int b);
4+
int divideA_B_bp(int a, int b);
45

56
int* nullPointer = NULL;
67

0 commit comments

Comments
 (0)