🐞[bug]: Dark mode isn't working properly on the Navbar, the "FAQ" section and the section after the hero-section and some other parts doesn't even have a dark mode #538
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 Issue | |
on: | |
issues: | |
types: [opened, reopened, edited] | |
jobs: | |
label_issue: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Label Issue | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
const issue = context.payload.issue; | |
const issueBody = issue.body ? issue.body.toLowerCase() : ''; | |
const issueTitle = issue.title.toLowerCase(); | |
// Add gssoc label to all issues | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: issue.number, | |
labels: ['gssoc-ext','hacktoberfest-accepted'] | |
}); | |
const addLabel = async (label) => { | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: issue.number, | |
labels: [label] | |
}); | |
}; | |
if (issueBody.includes('documentation') || issueTitle.includes('doc') || issueBody.includes('readme')) { | |
await addLabel('documentation'); | |
} | |
if (issueBody.includes('feature') || issueBody.includes('enhancement') || issueTitle.includes('add') || issueTitle.includes('implement')) { | |
await addLabel('enhancement'); | |
} | |
if (issueBody.includes('bug') || issueBody.includes('fix') || issueTitle.includes('fix') || issueTitle.includes('resolve')) { | |
await addLabel('bug'); | |
} |