Feedback: SwiftUI app lifecycle: issues with ScenePhase and using AppDelegate adaptors #4
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
# GitHub Actions Virtual Environments | |
# https://github.com/actions/virtual-environments/ | |
name: Label Feedback Issues | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
label-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
if: ${{ contains(github.event.issue.title, 'Feedback:') || contains(github.event.issue.body, 'Comments, Questions, Feedback:') }} | |
steps: | |
- run: gh issue edit "$NUMBER" --add-label "$LABELS" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.issue.number }} | |
LABELS: blog comments & questions |