Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automatically add label to issues #1047

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/label-issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Label Issues Based on Template

on:
issues:
types: [opened, edited]

jobs:
label-issues:
runs-on: ubuntu-latest

steps:
- name: Check if issue needs a label
id: check_label
run: |
echo "Checking labels for issue #${{ github.event.issue.number }}"

if [[ "${{ github.event.issue.body }}" == *"I'm a GSSOC'24 contributor"* ]]; then
echo "::set-output name=label::gssoc"
elif [[ "${{ github.event.issue.body }}" == *"I'm a VSOC'24 contributor"* ]]; then
echo "::set-output name=label::VSoC'24"
else
echo "::set-output name=label::"
fi

- name: Apply Label
if: steps.check_label.outputs.label != ''
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: ${{ steps.check_label.outputs.label }}
Loading