This repository has been archived by the owner on May 17, 2024. It is now read-only.
Stop data-diff
when maximum time or # different records is exceeded
#468
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
# if a comment is added to an issue awaiting response, remove the "awaiting_response" label and add a "triage" label | |
name: Awaiting Response --> Triage Label | |
on: issue_comment | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
issues: write | |
jobs: | |
triage_label: | |
if: contains(github.event.issue.labels.*.name, 'awaiting_response') | |
runs-on: ubuntu-latest | |
steps: | |
- name: initial labeling | |
uses: andymckay/labeler@master | |
with: | |
add-labels: "triage" | |
remove-labels: "awaiting_response" |