Owner: Carlos Alberto Sacaza Palacio #64
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: "Adds issues to Team Dashboard" | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.OS_GITHUB_APP_ID }} | |
private_key: ${{ secrets.OS_GITHUB_APP_PRIVATE_KEY }} | |
- name: add issue to team dashboard | |
uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/open-sauced/projects/25 | |
github-token: ${{ steps.generate_token.outputs.token }} |