Added Border and Hover Effect to "Contact Our Customer Support Team" … #53
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 Assign and Label PR | ||
on: | ||
pull_request_target: | ||
types: [opened] | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
jobs: | ||
assign-and-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add Labels to PR | ||
uses: actions-ecosystem/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
labels: | ||
- gssoc-ext | ||
- hacktoberfest-accepted | ||
- name: Assign PR to Creator | ||
uses: actions-ecosystem/action-assign@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
assignees: ${{ github.actor }} |