CI Failure: ConnectionsHandlerTest.java #2
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: Assign to project | |
on: | |
issues: | |
types: [labeled] | |
env: | |
GH_PROJECT_TOKEN: ${{ secrets.OCTAVIA_PAT }} | |
jobs: | |
# Simple assignment of issues to projects. | |
assign-to-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: timroes/[email protected] | |
with: | |
token: ${{ env.GH_PROJECT_TOKEN }} | |
# Specify which label should get added to which project. The project number can be found | |
# as part of the URL after projects/<id> when viewing the project on GitHub. | |
projects: | | |
team/frontend=7 | |
project/onboarding-improvements=16 |