Skip to content

Document the ability to download the application archive of any version including the currently deployed one #1164

Document the ability to download the application archive of any version including the currently deployed one

Document the ability to download the application archive of any version including the currently deployed one #1164

Workflow file for this run

on:
pull_request:
types: [opened]
name: Auto-label new PRs
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.DOCS_GH_PAT }}
script: |
const labels = ['type::feature', 'type::docs']
github.rest.issues.addLabels({
...context.repo,
issue_number: context.issue.number,
labels
})