File tree Expand file tree Collapse file tree
template/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ on: [push]
2+ permissions:
3+ contents: write
4+ issues: write
5+ name: Create issues for next steps
6+ jobs:
7+ next_steps:
8+ runs-on: ubuntu-latest
9+ steps:
10+ - uses: actions/checkout@v4
11+ - name: Create readthedocs issue
12+ uses: JasonEtco/create-an-issue@v2
13+ env:
14+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+ with:
16+ filename: .github/next_steps/03_readthedocs.md
17+ id: readthedocs
18+ - name: List created issues
19+ run: |
20+ echo 'Created issues that must be completed to have fully working Python package:
21+ * Read the Docs instructions ${{ steps.readthedocs.outputs.url }}'
22+ - name: Cleanup files needed to create next steps issues
23+ run: |
24+ git config --global user.name 'NLeSC Python template'
25+ git config --global user.email 'nlesc-python-template@users.noreply.github.com'
26+ git rm .github/workflows/next_steps_online_documentation.yml
27+ git rm -r .github/next_steps
28+ git commit -am "Cleanup automated next steps issue generator"
29+ git push
You can’t perform that action at this time.
0 commit comments