We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c75e9b commit a5e4c6eCopy full SHA for a5e4c6e
1 file changed
.github/workflows/format_rst.yml
@@ -0,0 +1,23 @@
1
+name: RST Autoformatter
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ formatting:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Check out code
10
+ uses: actions/checkout@v3
11
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v4
14
+ with:
15
+ python-version: '3.10'
16
17
+ - name: Run RST Autoformatter
18
+ uses: livxy/rst-autoformatter-action@main
19
20
+ files: '**/*.rst'
21
+ commit: 'true'
22
+ github-username: '📚'
23
+ commit-message: 'Apply rstfmt formatting'
0 commit comments