Skip to content

docs(whatsnew): update with code editor feature #2107

docs(whatsnew): update with code editor feature

docs(whatsnew): update with code editor feature #2107

Workflow file for this run

name: Cleanup
on:
pull_request:
types: [closed]
jobs:
docs:
if: github.actor != 'dependabot[bot]' && github.actor != 'lime-opensource'
name: Remove PR docs
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_USERNAME: lime-opensource
GH_TOKEN: ${{ secrets.CREATE_RELEASE }}
CI: true
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
token: ${{ secrets.CREATE_RELEASE }}
- uses: ./.github/actions/set-up-node
- run: npm ci
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "Lime Technologies OSS"
- name: Remove PR docs
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
run: npm run docs:publish -- --remove="PR-$PR_NUMBER"