The system tray window of my pieces os never loads #822
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
name: Updated Labels on Issues | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
issue_label_updater: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup labeling script | |
run: cd .github/label-updater && npm install | |
- name: Run issue label updater script | |
run: node .github/label-updater/index.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE_NUMBER: ${{ github.event.issue.number }} | |
COMMENT_ID: ${{ github.event.comment.id }} |