Skip to content

Add weekly admin stats digest — email Kamsi a scrape summary after each run #3

Add weekly admin stats digest — email Kamsi a scrape summary after each run

Add weekly admin stats digest — email Kamsi a scrape summary after each run #3

Workflow file for this run

name: Auto Label Issues
on:
issues:
types: [opened]
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
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: ['triage']
})