Skip to content

A step by step guide to Spring Boot Interceptors #1

A step by step guide to Spring Boot Interceptors

A step by step guide to Spring Boot Interceptors #1

Workflow file for this run

name: Issue Labeler
on:
issues:
types: [opened]
jobs:
labelIssue:
runs-on: ubuntu-latest
steps:
- name: Add label
uses: actions/github-script@v6
with:
github-token: ${{secrets.STACKTIPS_CONTENT_ACTION_TOKEN}}
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['good first issue', 'triaged']
})