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.
1 parent b6ab832 commit 5363d3eCopy full SHA for 5363d3e
.github/workflows/documentation-links.yml
@@ -0,0 +1,25 @@
1
+name: Read the Docs PR preview
2
+# Automatically edits a pull request's descriptions with a link
3
+# to the documentation's preview on Read the Docs.
4
+
5
+on:
6
+ pull_request_target:
7
+ types:
8
+ - opened
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ documentation-links:
16
+ runs-on: ubuntu-latest
17
+ permissions:
18
+ pull-requests: write
19
+ timeout-minutes: 5
20
21
+ steps:
22
+ - uses: readthedocs/actions/preview@v1
23
+ with:
24
+ project-slug: "tzdata"
25
+ single-version: "true"
0 commit comments