Adding support for playlist folders, (Instead of just showing all of the playlists show the folder and have it show the playlists in the folder when pressed) #22
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
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate token | |
id: generate-token | |
uses: actions/create-github-app-token@v1.11.0 | |
with: | |
app-id: ${{ vars.NOCTURNE_BOT_APP_ID }} | |
private-key: ${{ secrets.NOCTURNE_BOT_PRIVATE_KEY }} | |
- uses: actions/add-to-project@v1.0.2 | |
with: | |
project-url: https://github.com/orgs/usenocturne/projects/1 | |
github-token: ${{ steps.generate-token.outputs.token }} |