Skip to content

FEATURE: comment section in each blog #112

FEATURE: comment section in each blog

FEATURE: comment section in each blog #112

Workflow file for this run

name: Auto Assign and Label Issues
on:
issues:
types: [opened]
jobs:
assign-and-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Auto assign issue
run: |
ASSIGNEE='${{ github.actor }}'
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees \
-d "{\"assignees\":[\"${ASSIGNEE}\"]}"
- name: Auto label issue
run: |
LABELS='["good first issue", "gssoc", "level1"]'
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels \
-d "{\"labels\":${LABELS}}"