We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83703e4 + 1e9f3b3 commit da9704fCopy full SHA for da9704f
.github/workflows/default-check.yml
@@ -0,0 +1,32 @@
1
+name: Changes to project files
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths-ignore:
8
+ - 'Jetcaster/**'
9
+ - 'Jetchat/**'
10
+ - 'JetLagged/**'
11
+ - 'JetNews/**'
12
+ - 'Jetsnack/**'
13
+ - 'Reply/**'
14
+ pull_request:
15
16
17
18
19
20
21
22
23
+jobs:
24
+ build:
25
+ name: build
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Checkout
29
+ uses: actions/checkout@v4
30
31
+ - name: Run a simple check
32
+ run: echo "Running a simple check on files outside sample directories"
0 commit comments