label: Update data for Database technical area labled on dbdb.io and DB-Engines Ranking up to October 31, 2024. #1540
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
# reply-label-issue-comment.yml | |
# mark the status of the issue as waiting for repliers (contributor should reply) or waiting for author (issue author should reply) | |
name: Add issues workflow labels | |
on: | |
issue_comment: | |
types: [ created ] | |
jobs: | |
add-label-if-is-author: | |
runs-on: ubuntu-latest | |
if: (github.event.issue.user.id == github.event.comment.user.id) && !github.event.issue.pull_request && (github.event.issue.state == 'open') | |
steps: | |
- name: Add require handle label | |
uses: actions-cool/issues-helper@v2 | |
with: | |
actions: 'add-labels' | |
labels: 'waiting for repliers' | |
- name: Remove require reply label | |
uses: actions-cool/issues-helper@v2 | |
with: | |
actions: 'remove-labels' | |
labels: 'waiting for author' | |
add-label-if-not-author: | |
runs-on: ubuntu-latest | |
if: (github.event.issue.user.id != github.event.comment.user.id && github.event.comment.user.id != 69946302) && !github.event.issue.pull_request && (github.event.issue.state == 'open') | |
steps: | |
- name: Add require reply label | |
uses: actions-cool/issues-helper@v2 | |
with: | |
actions: 'add-labels' | |
labels: 'waiting for author' | |
- name: Remove require handle label | |
uses: actions-cool/issues-helper@v2 | |
with: | |
actions: 'remove-labels' | |
labels: 'waiting for repliers' |