Skip to content

Floating "On this page" text on the right of the screen when you make the page horizontally larger #480

Floating "On this page" text on the right of the screen when you make the page horizontally larger

Floating "On this page" text on the right of the screen when you make the page horizontally larger #480

Workflow file for this run

name: Triage New Issues
on:
issues:
types: [opened]
jobs:
triage:
name: Triage New Issues
runs-on: ubuntu-latest
steps:
- name: Add "needs/triage" label
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['needs/triage']
})