Skip to content

Adding a contributors wall in README #19

Adding a contributors wall in README

Adding a contributors wall in README #19

Workflow file for this run

name: Add labels to Issues
on:
issues:
types:
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["bootstrap","css","good first issue", "hacktoberfest", "hacktoberfest2024", "hacktoberfest24", "hacktoberfest-2024", "hacktoberfest-accepted", "html", "tailwindcss"]
})