File tree Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,6 @@ concurrency:
17
17
18
18
jobs :
19
19
tests :
20
- # Do not run the test matrix on PRs affecting the rendering
21
- if : ${{ !(github.event_name == 'pull_request') || !contains(github.event.pull_request.labels.*.name, 'html rendering / skip testing') }}
22
-
23
20
name : ${{ matrix.os }} ${{ matrix.name }}
24
21
runs-on : ${{ matrix.os }}
25
22
strategy :
57
54
58
55
59
56
gha_buildhtml :
60
- # When label is used, we do run buildhtml on GHA to check if the publishing job will run or not.
61
- # Use in case when new content has run into troubles on CircleCI.
62
- if : ${{ (github.event_name == 'pull_request') && contains(github.event.pull_request.labels.*.name, 'GHA buildhtml') }}
63
57
name : Buildhtml testing
64
58
runs-on : ubuntu-latest
65
59
steps :
Original file line number Diff line number Diff line change 1
- # Guide to Contributing
1
+ # Guide for Contributors
2
+
3
+ This guide is for contributing content to the tutorials.
2
4
3
5
First, clone this repository.
4
6
Original file line number Diff line number Diff line change 5
5
:glob:
6
6
tutorials/**/*
7
7
contributing
8
+ maintainers
8
9
```
Original file line number Diff line number Diff line change
1
+ # Guide for Maintainers
2
+
3
+ This guide for configuring and maintaining collection of executable
4
+ tutorials.
5
+
6
+ ## Specialized Patterns
7
+
8
+ Sometimes it is convenient to disable a job in a GitHub Action on certain Pull
9
+ Requests. This may be added to the job to configure it to skip Pull Requests
10
+ that have a given label called ` LABEL ` .
11
+
12
+ ``` yaml
13
+ jobs :
14
+ tests :
15
+ if : ${{ !(github.event_name == 'pull_request') || !contains(github.event.pull_request.labels.*.name, 'LABEL') }}
16
+ ` ` `
You can’t perform that action at this time.
0 commit comments