test: change token to github token #7
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: | |
push: | |
branches: | |
- develop | |
jobs: | |
demo_app_authentication: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate a token | |
id: generate-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: 882683 | |
private-key: ${{ secrets.PROJECT_APP_PRIVATE_KEY }} | |
- name: Add PR or issue to Modern GitOps Stack project board | |
uses: actions/[email protected] | |
with: | |
project-url: https://github.com/users/GersonRS/projects/2 | |
github-token: ${{ secrets.GITHUB_TOKEN }} |