Frontend: Implemented fading in & out effect on opening and closing of sidebar and modal objects #1018
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
# .github/workflows/take.yml | |
name: Assign issue to contributor | |
on: | |
issue_comment: | |
jobs: | |
assign: | |
name: Take an issue | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: take the issue | |
uses: bdougie/take-action@main | |
with: | |
message: Thanks for taking this issue! Let us know if you have any questions! | |
trigger: /assign | |
token: ${{ secrets.ISSUE_TOKEN }} |