Feature: Create an OG image for students landing page #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: Adds all issues opened in the /landing-page repo to the 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/add-to-project@v0.5.0 | |
with: | |
project-url: https://github.com/orgs/open-sauced/projects/25 | |
github-token: ${{ steps.generate_token.outputs.token }} |