Please invite me to the community #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] | |
}); |