Skip to content

Fixed the testimonial section for mobile screen #70

Fixed the testimonial section for mobile screen

Fixed the testimonial section for mobile screen #70

Workflow file for this run

name: Auto Label PRs
on:
pull_request:
types: [opened, edited]
jobs:
label_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
- name: Add GSSOC label
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['gssoc']
})