Rewrite of Progress.svelte and checkpoint.ts to native js instead of using svelte API #24
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
name: Update PR description | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
update-pr-description: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: octue/[email protected] | |
id: pr-description | |
with: | |
pull_request_url: ${{ github.event.pull_request.url }} | |
api_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update pull request body | |
uses: riskledger/update-pr-description@v2 | |
with: | |
body: ${{ steps.pr-description.outputs.pull_request_description }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# "FEA": "### New features", | |
# "ENH": "### Enhancements", | |
# "FIX": "### Fixes", | |
# "OPS": "### Operations", | |
# "DEP": "### Dependencies", | |
# "REF": "### Refactoring", | |
# "TST": "### Testing", | |
# "REV": "### Reversions", | |
# "CHO": "### Chores", | |
# "STY": "### Style", | |
# "MRG": OTHER_SECTION_HEADING, | |
# "WIP": OTHER_SECTION_HEADING, | |
# "DOC": OTHER_SECTION_HEADING, |