File tree 5 files changed +26
-15
lines changed
5 files changed +26
-15
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ jobs:
176
176
path : deploy
177
177
# Download the entire history
178
178
fetch-depth : 0
179
- persist-credentials : false
179
+ persist-credentials : true
180
180
if : (github.event_name == 'release' || github.event_name == 'push') && (matrix.os == 'ubuntu-latest')
181
181
182
182
- name : Push the built HTML to gh-pages
Original file line number Diff line number Diff line change 1
1
# Draft the next release notes
2
2
#
3
- # This workflow is run to update the next release notes as pull requests are
4
- # merged into the main branch. The configuration file is located at
5
- # `.github/release-drafter.yml`.
3
+ # This workflow is run to update the next release notes as pull requests are merged into
4
+ # the main branch. The configuration file is located at `.github/release-drafter.yml`.
6
5
#
7
6
name : Release Drafter
8
7
11
10
branches :
12
11
- main
13
12
14
- permissions : {}
13
+ permissions :
14
+ contents : read
15
15
16
16
jobs :
17
17
update_release_draft :
18
+ permissions :
19
+ # write permission is required to create a github release
20
+ contents : write
18
21
runs-on : ubuntu-latest
19
22
if : github.repository == 'GenericMappingTools/pygmt'
20
23
Original file line number Diff line number Diff line change
1
+ # Common Parameters
2
+
3
+ ``` {glossary}
4
+ ``verbose``
5
+ Select verbosity level, which modulates the messages written to stderr.
6
+
7
+ Choose among 7 levels of verbosity [Default is ``"w"``]:
8
+
9
+ - ``"q"``: Quiet, not even fatal error messages are produced
10
+ - ``"e"``: Error messages only
11
+ - ``"w"``: Warnings [Default]
12
+ - ``"t"``: Timings (report runtimes for time-intensive algorithms)
13
+ - ``"i"``: Informational messages (same as ``verbose=True``)
14
+ - ``"c"``: Compatibility warnings
15
+ - ``"d"``: Debugging messages
16
+ ```
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ visit the {gmt-docs}`GMT Technical Reference <reference.html>`.
8
8
``` {toctree}
9
9
:maxdepth: 1
10
10
11
+ common_parameters.md
11
12
projections.md
12
13
fonts.md
13
14
patterns.md
Original file line number Diff line number Diff line change 364
364
in the image (for further processing). """ ,
365
365
"verbose" : r"""
366
366
verbose : bool or str
367
- Select verbosity level [Default is **w**], which modulates the messages
368
- written to stderr. Choose among 7 levels of verbosity:
369
-
370
- - **q**: Quiet, not even fatal error messages are produced
371
- - **e**: Error messages only
372
- - **w**: Warnings [Default]
373
- - **t**: Timings (report runtimes for time-intensive algorithms)
374
- - **i**: Informational messages (same as ``verbose=True``)
375
- - **c**: Compatibility warnings
376
- - **d**: Debugging messages""" ,
367
+ Select verbosity level [:term:`Full usage <verbose>`].""" ,
377
368
"wrap" : r"""
378
369
wrap : str
379
370
**y**\|\ **a**\|\ **w**\|\ **d**\|\ **h**\|\ **m**\|\ **s**\|\
You can’t perform that action at this time.
0 commit comments