File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Dashboard PR preview
2+ # Automatically edits a pull request's descriptions with a link
3+ # to the GitHub pages PR preview.
4+
5+ on :
6+ pull_request_target :
7+ types :
8+ - opened
9+ - reopened
10+
11+ permissions :
12+ pull-requests : write
13+
14+ concurrency :
15+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
16+ cancel-in-progress : true
17+
18+ jobs :
19+ documentation-links :
20+ runs-on : ubuntu-latest
21+ steps :
22+ 23+ with :
24+ auth : ${{ secrets.GITHUB_TOKEN }}
25+ repo : ${{ github.event.repository.name }}
26+ owner : ${{ github.repository_owner }}
27+ pr : ${{ github.event.number }}
28+ url : " https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/${{ github.ref_name }}"
29+ message : " 📊 Dashboard preview:"
You can’t perform that action at this time.
0 commit comments