Temporary issue for testing automation #1
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
# This workflow will triage issues and apply a label based on the creator. | |
# | |
# To use this workflow, you will need to set up a .github/labeler.yml | |
# file with configuration. For more information, see: | |
# https://github.com/actions/labeler | |
name: Issues Labeler | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
jobs: | |
add_label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: add label | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: "testing" |