Add Github Action for testing on darwin #11
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
# Based on | |
# - https://docs.github.com/en/actions/guides/adding-labels-to-issues | |
# - https://github.com/andymckay/labeler | |
name: add-triage-label.yaml | |
on: | |
issues: | |
types: | |
- reopened | |
- opened | |
jobs: | |
automate-issues-labels: | |
name: Add triage label to issue | |
runs-on: ubuntu-latest | |
steps: | |
- name: initial labeling | |
uses: andymckay/labeler@1.0.4 | |
with: | |
add-labels: "triage" |