Develop a modular architecture that supports community contributions, with at least 10 custom blocks added by the community. #40
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: "Auto Label Issues" | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Apply labels | |
uses: github/issue-labeler@v3 | |
with: | |
configuration-path: .github/labeler.yml | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |