Skip to content

Please invite me to the community #1

Please invite me to the community

Please invite me to the community #1

Workflow file for this run

name: Apply Label to New Issues
on:
issues:
types: [opened]
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Apply Label
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const issue = context.issue;
github.rest.issues.addLabels({
owner: issue.owner,
repo: issue.repo,
issue_number: issue.number,
labels: ['✉️ github-invitation']
});