Please invite me to the GitHub Community Organization #12
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: Labeler | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add "invite me to the organization" label | |
if: github.ref == 'refs/heads/main' && contains(github.event.issue.title, 'Please invite me to the GitHub Community Organization') | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
label: "invite me to the organization" |