remove escape characters #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
permissions: | |
contents: write | |
issues: write | |
name: Create issues for citation | |
jobs: | |
next_steps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create citation data issue | |
uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: .github/next_steps/02_citation.md | |
id: citation | |
- name: List created issues | |
run: | | |
echo 'Created issues that must be completed to have fully working Python package: | |
* Citation data ${{ steps.citation.outputs.url }} | |
- name: Cleanup files needed to create next steps issues | |
run: | | |
git config --global user.name 'NLeSC Python template' | |
git config --global user.email '[email protected]' | |
git rm .github/workflows/next_steps_citation.yml | |
git rm -r .github/next_steps | |
git commit -am "Cleanup automated next steps issue generator" | |
git push |