⬆ Bump upsonic from 0.28.4 to 0.34.3 #34
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 a label applied to an issue, the bot will add a comment with some additional info | |
name: 🎯 Auto-Reply to Labeled Tickets | |
on: | |
issues: | |
types: | |
- labeled | |
- unlabeled | |
pull_request_target: | |
types: | |
- labeled | |
- unlabeled | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
comment: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Label Commenter | |
uses: peaceiris/actions-label-commenter@v1 | |
with: | |
config_file: .github/issue-auto-comments.yml | |
github_token: ${{ secrets.ORG_REPO_TOKEN || secrets.GITHUB_TOKEN }} |