Skip to content

How is data persistence being handled? #7

How is data persistence being handled?

How is data persistence being handled? #7

Workflow file for this run

name: New issues into Triage
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for Reporting!',
labels: ['Triage']
})