-
Notifications
You must be signed in to change notification settings - Fork 607
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44acf84
commit dc81553
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
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
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 }} |