[bug] add execption handing for the month without data #3
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-open.yml | |
# mark the initial status of the issue when it's been opened | |
name: Issue Open Check | |
on: | |
issues: | |
types: [ opened ] | |
jobs: | |
issue-open-add-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add labels | |
uses: actions-cool/issues-helper@v2 | |
if: ${{ !github.event.comment.pull_request.pull_request }} | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
actions: 'add-labels' | |
labels: 'waiting for repliers' |