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:
1717
1818jobs :
1919 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-
2320 name : ${{ matrix.os }} ${{ matrix.name }}
2421 runs-on : ${{ matrix.os }}
2522 strategy :
5754
5855
5956 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') }}
6357 name : Buildhtml testing
6458 runs-on : ubuntu-latest
6559 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.
24
35First, clone this repository.
46
Original file line number Diff line number Diff line change @@ -24,4 +24,5 @@ caption: Contributing
2424---
2525
2626contributing
27+ maintainers
2728```
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