This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Task definition caching does not work if the task definitions come from separate deployments. #91
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: Add issues to integrations board | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tibdex/github-app-token@v2 | |
id: generate-token | |
name: Generate GitHub token | |
with: | |
app_id: ${{ secrets.SYNC_APP_ID }} | |
private_key: ${{ secrets.SYNC_APP_PRIVATE_KEY }} | |
- uses: actions/[email protected] | |
with: | |
project-url: ${{ secrets.ADD_TO_PROJECT_URL }} | |
github-token: ${{ steps.generate-token.outputs.token }} |